Files
gridpilot.gg/apps/website/lib/dtos/GetPaymentsOutputDto.ts
2025-12-17 18:01:47 +01:00

9 lines
206 B
TypeScript

import type { PaymentDto } from './PaymentDto';
/**
* Get payments output data transfer object
* Output containing list of payments
*/
export interface GetPaymentsOutputDto {
payments: PaymentDto[];
}