Files
doneit-web/src/app/models/despacho.model.ts
T
Peter Maquiran 5a1bbe6103 fix issues
2024-12-05 19:14:11 +01:00

20 lines
467 B
TypeScript

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