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

18 lines
452 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;
2021-02-17 09:47:00 +01:00
SubjectTypeId:string;
UserEmail: string;
UsersSelected: Participant[];
DispatchFolder: Folder;
2021-04-30 14:12:45 +01:00
AttachmentList?: {
ProcessInstanceID: string,
"Source": string,
"UserId": string,
"Attachment": string
}[]
2020-11-17 14:59:33 +01:00
}