src/database/interface/blog-model/blog-model.interface.ts
Properties |
author |
author:
|
Type : string
|
categories |
categories:
|
Type : string
|
content |
content:
|
Type : string
|
createdAt |
createdAt:
|
Type : Date
|
description |
description:
|
Type : string
|
id |
id:
|
Type : number
|
imageUrl |
imageUrl:
|
Type : string
|
keywords |
keywords:
|
Type : string
|
mainArticleImage |
mainArticleImage:
|
Type : string
|
readingDuration |
readingDuration:
|
Type : string
|
slug |
slug:
|
Type : string
|
tags |
tags:
|
Type : string
|
title |
title:
|
Type : string
|
export interface BlogModel {
id:number,
title:string,
tags:string,
description:string,
categories:string,
readingDuration:string,
author:string,
mainArticleImage:string,
keywords:string,
imageUrl:string,
slug:string,
content:string,
createdAt:Date
}