Files
doneit-web/src/app/models/despacho.model.ts
T
tiago.kayaya cd50681ae4 fix bug
2021-05-07 15:27:31 +01:00

18 lines
443 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
}[],
}
}