Files
BeWoPlaner/Data/Models/XRechnung/XRPosition.cs
2024-12-16 12:41:11 +01:00

21 lines
484 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BeWo.Data.Models.XRechnung
{
public class XRPosition
{
public int Quantity { get; set; }
public string QuantityType { get; set; }
public string Text { get; set; }
public int Net { get; set; }
public int NetTotal { get; set; }
public decimal Tax { get; set; }
public decimal TaxSum { get; set; }
public string TaxType { get; set; }
}
}