This commit is contained in:
Peter Maquiran
2021-04-21 19:59:49 +01:00
parent ef1c260f77
commit 6d6dbb2278
12 changed files with 349 additions and 39 deletions
+12
View File
@@ -0,0 +1,12 @@
import { Folder } from "./folder.model";
import { Participant } from "./participant.model";
export class Despacho{
DistributionType: string;
CountryCode: string;
Priority: string;
SubjectTypeId:string;
UserEmail: string;
UsersSelected: Participant[];
DispatchFolder: Folder;
}
+3 -1
View File
@@ -1,6 +1,8 @@
export class Participant{
UserEmail: string;
UserEmail: string ;
UserId?: string ;
UserType: string;
DeadLine?: string
/* Deadline: Date; */
}