create invoice component

This commit is contained in:
zzdrojewskipaw
2025-11-27 23:52:32 +01:00
parent 2b7ed3e451
commit 437d6d8f42
14 changed files with 624 additions and 1 deletions

View 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; }
}