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