ntk-cms-api
Version:
Ntk Cms Api And Model For Typscript
41 lines (40 loc) • 1.23 kB
TypeScript
import { BaseModuleEntity } from '../base/baseModuleEntity';
import { FileCategoryModel } from './fileCategoryModel';
export declare class FileContentModel extends BaseModuleEntity<number> {
linkCategoryId: number;
fileName: string;
description: string;
body: string;
fromDate: Date;
geolocationlatitude: number;
geolocationlongitude: number;
keyword: string;
linkFileIds: string;
linkFilePodcastId?: number;
linkFileMovieId?: number;
linkMainImageId?: number;
scoreClick: number;
scoreSumPercent: number;
viewCount: number;
favorited: boolean;
fileSize: number;
expireDate: Date;
moduleCoreCreatedBy: string;
moduleCoreUpdatedBy: string;
source: string;
virtual_Category: FileCategoryModel;
category: FileCategoryModel;
otherInfos: string;
contentAndParameterValues: any;
linkMainImageIdSrc: string;
downloadLinksrc: string;
downloadLinksrcByDomain: string;
downloadThumbnailSrc: string;
extension: string;
fileExist: boolean;
fileExistChecked: Date;
fileLastUseed: Date;
fileSrc: string;
renderOrderImagePlace: number;
uploadFileGUID: string;
}