8 lines
172 B
TypeScript
8 lines
172 B
TypeScript
/**
|
|
* Create payment output data transfer object
|
|
* Output from creating a payment
|
|
*/
|
|
export interface CreatePaymentOutputDto {
|
|
paymentId: string;
|
|
success: boolean;
|
|
} |