barker/bookie/src/app/core/receive-payment-item.ts

6 lines
128 B
TypeScript

import { SettleOption } from './settle-option';
export interface ReceivePaymentItem extends SettleOption {
amount: number;
}