26 lines
570 B
C#
26 lines
570 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 XRInvoice
|
|
{
|
|
public string Type { get; set; }
|
|
public string Number { get; set; }
|
|
public string Date { get; set; }
|
|
public string Currency { get; set; }
|
|
public string Notice { get; set; }
|
|
public XRInvoicePeriod Period { get; set; }
|
|
public XRInvoicePayment Payment { get; set; }
|
|
|
|
public XRInvoice()
|
|
{
|
|
Period = new XRInvoicePeriod();
|
|
Payment = new XRInvoicePayment();
|
|
}
|
|
}
|
|
}
|