Files
tsclass/ts/content/author.ts
2020-01-19 10:19:38 +00:00

24 lines
340 B
TypeScript

import { general, content } 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: general.IDate;
/**
* articles of an author
*/
articles: content.IArticle[];
}