13 lines
365 B
TypeScript
13 lines
365 B
TypeScript
import type { Presenter } from '@core/shared/presentation';
|
|
|
|
export interface RaceRegistrationsViewModel {
|
|
registeredDriverIds: string[];
|
|
count: number;
|
|
}
|
|
|
|
export interface RaceRegistrationsResultDTO {
|
|
registeredDriverIds: string[];
|
|
}
|
|
|
|
export interface IRaceRegistrationsPresenter
|
|
extends Presenter<RaceRegistrationsResultDTO, RaceRegistrationsViewModel> {} |