create invoice component
This commit is contained in:
18
BimAI.Domain/Entities/Invoice.cs
Normal file
18
BimAI.Domain/Entities/Invoice.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
namespace BimAI.Domain.Entities;
|
||||
|
||||
public class Invoice: BaseEntity
|
||||
{
|
||||
public required string DocumentNo { get; set; }
|
||||
public required string Type { get; set; }
|
||||
public DateTime RegisterDate { get; set; }
|
||||
public DateTime SellDate { get; set; }
|
||||
public required string ClientName { get; set; }
|
||||
public string? ClientId { get; set; }
|
||||
public string? ClientNip { get; set; }
|
||||
public string? ClientAddress { get; set; }
|
||||
public required string Currency { get; set; }
|
||||
public decimal TotalNetto { get; set; }
|
||||
public decimal TotalBrutto { get; set; }
|
||||
public decimal TotalVat { get; set; }
|
||||
public required string Source { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user