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 Peroid { get; set; } public XRInvoicePayment Payment { get; set; } public XRInvoice() { Peroid = new XRInvoicePeriod(); Payment = new XRInvoicePayment(); } } }