Add project files.

This commit is contained in:
OlgunR
2026-05-21 14:35:02 +02:00
parent b315aead20
commit dc551c2313
106 changed files with 303666 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
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"
}
}