Files
BeWoPlaner/Data/Models/XRechnung/XRInvoice.cs

26 lines
570 B
C#
Raw Normal View History

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; }
2024-12-16 13:32:30 +01:00
public XRInvoicePeriod Period { get; set; }
public XRInvoicePayment Payment { get; set; }
public XRInvoice()
{
2024-12-16 13:32:30 +01:00
Period = new XRInvoicePeriod();
Payment = new XRInvoicePayment();
}
}
}