Files
doneit-web/src/app/models/despacho.model.ts
T

18 lines
443 B
TypeScript
Raw Normal View History

2020-11-17 14:59:33 +01:00
import { Participant } from './participant.model';
import { Folder } from './folder.model';
export class Despacho{
DistributionType: string;
CountryCode: string;
2020-11-20 10:55:51 +01:00
Priority: string;
UserEmail: string;
UsersSelected: Participant[];
DispatchFolder: Folder;
2021-04-30 14:12:45 +01:00
AttachmentList?: {
ProcessInstanceID: string,
Attachments: {
ApplicationId: string,
SourceId: string
}[],
}
2020-11-17 14:59:33 +01:00
}