11 lines
232 B
TypeScript
11 lines
232 B
TypeScript
import type { PenaltyTypeDto } from './PenaltyTypeDto';
|
|
|
|
/**
|
|
* Penalty data structure
|
|
* Used when creating or updating penalties
|
|
*/
|
|
export interface PenaltyDataDto {
|
|
driverId: string;
|
|
type: PenaltyTypeDto;
|
|
value?: number;
|
|
} |