Files
doneit-web/src/app/models/despacho.model.ts
T
Tiago Kayaya b3d709037a - Integrate combined profile events at home
-Added another button to change profile
2020-11-20 10:55:51 +01:00

11 lines
279 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;
}