12 lines
275 B
TypeScript
12 lines
275 B
TypeScript
/**
|
|
* Domain Entity: RaceRegistration
|
|
*
|
|
* Extracted from racing-application registrations module so that
|
|
* registration-related types live in the racing-domain package.
|
|
*/
|
|
|
|
export interface RaceRegistration {
|
|
raceId: string;
|
|
driverId: string;
|
|
registeredAt: Date;
|
|
} |