import { Tax } from './tax-type';
export interface InvoiceLine {
    Index: number;
    Name: string;
    Quantity: number;
    UnitType: string;
    Price: number;
    Description?: string;
    Taxes?: Tax[];
}
