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

8 lines
146 B
TypeScript
Raw Normal View History

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; */
}