export interface ISubscriptionBaseItem {
    description: string;
    quantity: number;
    recurrent: boolean;
    voucherKey: string | null;
    totalPrice: number;
    unitPrice: number;
}
