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