Files
doneit-web/src/app/models/despacho.model.ts
T
Peter Maquiran 14b7d91429 Improve task
2021-05-07 14:22:54 +01:00

19 lines
468 B
TypeScript

import { Participant } from './participant.model';
import { Folder } from './folder.model';
export class Despacho{
DistributionType: string;
CountryCode: string;
Priority: string;
SubjectTypes: any[];
UserEmail: string;
UsersSelected: Participant[];
DispatchFolder: Folder;
AttachmentList?: {
ProcessInstanceID: string,
Attachments: {
ApplicationId: string,
SourceId: string
}[],
}
}