Add project files.
This commit is contained in:
19
DXApp.TemplateKitProject/Models/ZugferdInvoice.cs
Normal file
19
DXApp.TemplateKitProject/Models/ZugferdInvoice.cs
Normal 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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user