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