plutoapi-v2/src/models/partyplaner/event/Registration.interface.ts

11 lines
179 B
TypeScript

/**
* Used in the getEventData method
*/
export interface Registration {
registrationId: string;
name: string;
registeredDate: Date;
takesPart: boolean;
comment: string;
}