21 lines
496 B
C#
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; }
|
|
}
|
|
}
|