2022-07-18 16:32:09 +03:00

24 lines
763 B
TypeScript

import { DownloadFileType } from '../shared';
import { List } from '@iqser/common-ui';
export interface IDossier {
readonly approverIds: List;
readonly date: string;
readonly description?: string;
readonly dossierId: string;
readonly dossierStatusId: string;
readonly dossierName: string;
readonly dossierTemplateId: string;
readonly downloadFileTypes?: List<DownloadFileType>;
readonly dueDate?: string;
readonly hardDeletedTime?: string;
readonly memberIds: List;
readonly ownerId: string;
readonly reportTemplateIds: List;
readonly softDeletedTime?: string;
readonly startDate?: string;
readonly watermarkId: string;
readonly previewWatermarkId: string;
readonly archivedTime: string;
}