Files
tsclass/ts/content/author.ts
2018-07-22 19:28:11 +02:00

25 lines
344 B
TypeScript

import { IDate } from '..';
import { IArticle } from '..';
export interface IAuthor {
/**
* the first name of an author
*/
firstName: string;
/**
* the surname of an author
*/
surName: string;
/**
* the birthday of an author
*/
birthday: IDate;
/**
* articles of an author
*/
articles: IArticle[];
}