Files
DXApp/DXApp.TemplateKitProject/Models/ZugferdInvoice.cs
2026-05-21 14:35:02 +02:00

19 lines
766 B
C#

namespace DXApp.TemplateKitProject.Models
{
public class ZugferdInvoice
{
public int Id { get; set; }
public string InvoiceNumber { get; set; }
public DateTime InvoiceDate { get; set; }
public string SellerName { get; set; }
public string SellerTaxId { get; set; }
public string BuyerName { get; set; }
public decimal TotalAmount { get; set; }
public decimal TaxAmount { get; set; }
public string CurrencyCode { get; set; }
public string Iban { get; set; }
public string RawXml { get; set; } // Original-XML zur Sicherheit
public DateTime ImportedAt { get; set; }
public string SourceType { get; set; } // "Upload" oder "Email"
}
}