9 lines
206 B
TypeScript
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[];
|
|
} |