Files
doneit-web/src/app/models/eventperson.model.ts
T
2024-01-17 10:25:16 +01:00

10 lines
182 B
TypeScript

export class EventPerson{
EmailAddress: string;
Name: string;
IsRequired: boolean;
UserType: string;
IsPR: boolean;
RoleDescription: string;
Id: string
}