mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
18 lines
443 B
TypeScript
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
|
|
}[],
|
|
}
|
|
} |