UNPKG

ntk-cms-api

Version:

Ntk Cms Api And Model For Typscript

21 lines (20 loc) 802 B
import { NotificationTypeEnum } from '../../enums/base/notificationTypeEnum'; import { BaseModuleEntity } from '../base/baseModuleEntity'; import { ApplicationAppModel } from './applicationAppModel'; import { ApplicationMemberInfoModel } from './applicationMemberInfoModel'; export declare class ApplicationLogNotificationModel extends BaseModuleEntity<string> { linkApplicationMemberId: string; memberInfo: ApplicationMemberInfoModel; linkApplicationId?: number; application: ApplicationAppModel; title: string; content: string; contentType: NotificationTypeEnum; contentJson: string; contentJsonClass: string; smallImageId: number; bigImageId: number; smallImageIdSrc: string; bigImageIdSrc: string; errorMessage: string; }