File

src/database/interface/blog-model/blog-model.interface.ts

Index

Properties

Properties

author
author: string
Type : string
categories
categories: string
Type : string
content
content: string
Type : string
createdAt
createdAt: Date
Type : Date
description
description: string
Type : string
id
id: number
Type : number
imageUrl
imageUrl: string
Type : string
keywords
keywords: string
Type : string
mainArticleImage
mainArticleImage: string
Type : string
readingDuration
readingDuration: string
Type : string
slug
slug: string
Type : string
tags
tags: string
Type : string
title
title: string
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
}

results matching ""

    No results matching ""