BillLines
public class EBillLineDto
{
public string Name { get; set; }
public decimal Quantity { get; set; }
public string UnitType { get; set; }
public decimal Price { get; set; }
public decimal KDVPercent { get; set; }
public decimal KDVTotal { get; set; }
}Name
Quantity
UnitType
Price
KDVPercent
KDVTotal
Last updated