import { IMessageType } from './IMessageType'; import { IMessageStatus } from './IMessageStatus'; export interface IMessages { MessageId?: number; MessageParentType?: IMessageType; MessageType?: IMessageType; MessageStatus?: IMessageStatus; JobPlanId?: number; StaffId?: number; Subject?: string; Description?: string; FilePath?: string; CreateDate?: string; LastUpdated?: string; LoggedStaffID?: number; }