????

Your IP : 216.73.216.184


Current Path : C:/inetpub/vhost/invest.gdtsolutions.vn/api/dist/apps/posts/entities/
Upload File :
Current File : C:/inetpub/vhost/invest.gdtsolutions.vn/api/dist/apps/posts/entities/post.entity.d.ts

import { Category } from '../../categories/entities/category.entity';
import BaseEntity from '../../models/base-entity.model';
import { PostTranslation } from '../../post-translations/entities/post-translation.entity';
import { Slide } from '@/apps/slides/entities/slide.entity';
export declare class Post extends BaseEntity {
    categoryId: number;
    thumbnail: string;
    category: Category;
    translations?: PostTranslation[];
    slide?: Slide;
}