-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInvoice.cs
26 lines (25 loc) · 1015 Bytes
/
Invoice.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
namespace DataInvoiceManager.API.Core.Models
{
public class Invoice : Base
{
public string? InvoiceId { get; set; }
public string? PurchaseOrder { get; set; }
public string? InvoiceTotal { get; set; }
public string? SubTotal { get; set; }
public string? TotalTax { get; set; }
public string? InvoiceDate { get; set; }
public string? DueDate { get; set; }
public string? CustomerId { get; set; }
public string? CustomerName { get; set; }
public string? BillingAddress { get; set; }
public string? BillingAddressRecipient { get; set; }
public string? ShippingAddress { get; set; }
public string? ShippingAddressRecipient { get; set; }
public string? SupplierId { get; set; }
public string? SupplierName { get; set; }
public string? SupplierAddress { get; set; }
public string? SupplierAddressRecipient { get; set; }
public string? Status { get; set; }
}
}