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

8 lines
172 B
TypeScript

/**
* Create payment output data transfer object
* Output from creating a payment
*/
export interface CreatePaymentOutputDto {
paymentId: string;
success: boolean;
}