export interface Tax {
    TaxCode: string;
    Total: number;
    Percent: number;
    ReasonCode?: string;
    ReasonDesc?: string;
}
