11 lines
229 B
TypeScript
11 lines
229 B
TypeScript
/**
|
|
* Create payment input data transfer object
|
|
* Input for creating a payment
|
|
*/
|
|
export interface CreatePaymentInputDto {
|
|
amount: number;
|
|
currency: string;
|
|
leagueId: string;
|
|
driverId: string;
|
|
description?: string;
|
|
} |