export class Payment {
    label: string;
    identifier: string;
    selected: boolean;
    readonly: boolean;
    value: number;
    id?: number;
}