11 lines
179 B
TypeScript
11 lines
179 B
TypeScript
/**
|
|
* Used in the getEventData method
|
|
*/
|
|
export interface Registration {
|
|
registrationId: string;
|
|
name: string;
|
|
registeredDate: Date;
|
|
takesPart: boolean;
|
|
comment: string;
|
|
}
|