Files
BeWoPlaner/Data/Models/XRechnung/XRPosition.cs
2025-12-01 19:08:37 +01:00

21 lines
496 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 decimal Quantity { get; set; }
public string QuantityType { get; set; }
public string Text { get; set; }
public decimal Net { get; set; }
public decimal NetTotal { get; set; }
public decimal Tax { get; set; }
public decimal TaxSum { get; set; }
public string TaxType { get; set; }
}
}