# BillLines

> This is the area where all the details of the items (goods/services) on the bill will be entered.

```csharp
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

<mark style="color:blue;">`string`</mark>  <mark style="color:red;">`Zorunlu`</mark>

> This is the area where the product name will be entered.

### Quantity

<mark style="color:blue;">`decimal`</mark>  <mark style="color:red;">`Zorunlu`</mark>

> This is the field where the amount will be entered.

### UnitType

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Zorunlu`</mark>

> This is the field where the unit type is entered. The possible values ​​are listed under Unit Codes in the code lists section.

### Price

<mark style="color:blue;">`string`</mark>  <mark style="color:red;">`Zorunlu`</mark>

> This is the area where the product price will be entered.

### KDVPercent

<mark style="color:blue;">`decimal`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> This is the field where the product's VAT rate will be entered.

{% hint style="info" %}
VAT rates are 1%, 10%, and 20%.
{% endhint %}

### KDVTotal

<mark style="color:blue;">`decimal`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> This is the field where the total VAT amount of the product will be entered.
