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

11 lines
198 B
TypeScript

/**
* Payment data transfer object
* Represents a payment transaction
*/
export interface PaymentDto {
id: string;
amount: number;
currency: string;
status: string;
createdAt: string;
}