12 lines
263 B
TypeScript
12 lines
263 B
TypeScript
import type { PenaltyType } from '../../domain/entities/Penalty';
|
|
|
|
export interface ApplyPenaltyCommand {
|
|
raceId: string;
|
|
driverId: string;
|
|
stewardId: string;
|
|
type: PenaltyType;
|
|
value?: number;
|
|
reason: string;
|
|
protestId?: string;
|
|
notes?: string;
|
|
} |