InvoiceIssuer.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace BO.AppServer.Data.Entity
  5. {
  6. public partial class InvoiceIssuer
  7. {
  8. public InvoiceIssuer()
  9. {
  10. Invoices = new HashSet<Invoice>();
  11. }
  12. public long Id { get; set; }
  13. public string SubjectName { get; set; }
  14. public string Address1 { get; set; }
  15. public string Address2 { get; set; }
  16. public string City { get; set; }
  17. public string Zip { get; set; }
  18. public string Country { get; set; }
  19. public string TaxNumber { get; set; }
  20. public string Vatnumber { get; set; }
  21. public string Phone { get; set; }
  22. public string Email { get; set; }
  23. public DateTime Created { get; set; }
  24. public DateTime? Modified { get; set; }
  25. public long CreatedByUserId { get; set; }
  26. public long? ModifiedByUserId { get; set; }
  27. public bool IsEnabled { get; set; }
  28. public virtual User CreatedByUser { get; set; }
  29. public virtual User ModifiedByUser { get; set; }
  30. public virtual ICollection<Invoice> Invoices { get; set; }
  31. }
  32. }