zgo/src/app/pmtservice/pmtservice.model.ts

8 lines
121 B
TypeScript

export interface PmtData {
ownerId: string;
invoice: string;
amount: number;
currency: string;
shortcode: string;
}