refactor
This commit is contained in:
12
core/racing/application/use-cases/ApplyPenaltyCommand.ts
Normal file
12
core/racing/application/use-cases/ApplyPenaltyCommand.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user