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

8 lines
146 B
TypeScript
Raw Normal View History

2020-11-17 14:59:33 +01:00
export class Participant{
2021-04-21 19:59:49 +01:00
UserEmail: string ;
UserId?: string ;
UserType: string;
2021-04-21 19:59:49 +01:00
DeadLine?: string
/* Deadline: Date; */
2020-11-17 14:59:33 +01:00
}