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

24 lines
303 B
TypeScript

import { IAuthor } from '..';
export interface IArticle {
/**
* the title of an article
*/
title: string;
/**
* the Author of an article
*/
author: IAuthor;
/**
* the content of an article
*/
content: string;
/**
* the tags of an article
*/
tags: string[];
}