VoucherLines
public class EVoucherLineDto
{
public string Name { get; set; }
public decimal GrossWage { get; set; }
public decimal Price { get; set; }
public decimal KDVPercent { get; set; }
public decimal KDVTotal { get; set; }
public List<TaxDto> Taxes { get; set; }
public decimal GVWithholdingPercent { get; set; }
public decimal GVWithholdingTotal { get; set; }
}public class TaxDto
{
public string TaxCode { get; set; }
public decimal? Total { get; set; }
public decimal? Percent { get; set; }
public string ReasonCode { get; set; }
public string ReasonDesc { get; set; }
}