BillingPlan.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace BO.AppServer.Data.Entity
  5. {
  6. public partial class BillingPlan
  7. {
  8. public BillingPlan()
  9. {
  10. InvoiceItems = new HashSet<InvoiceItem>();
  11. }
  12. // public long Id { get; set; }
  13. public string Name { get; set; }
  14. public string Code { get; set; }
  15. public string Description { get; set; }
  16. public int PstinitialCredits { get; set; }
  17. public int PstcreditsPerItem { get; set; }
  18. public bool Pstwatermark { get; set; }
  19. public int Pstquality { get; set; }
  20. public string PstprocessProfile { get; set; }
  21. public bool Psttest { get; set; }
  22. public decimal Price { get; set; }
  23. public string Currency { get; set; }
  24. public DateTime Created { get; set; }
  25. public DateTime? Modified { get; set; }
  26. public long CreatedByUserId { get; set; }
  27. public long? ModifiedByUserId { get; set; }
  28. public bool IsCustom { get; set; }
  29. public bool IsHidden { get; set; }
  30. public bool IsEnabled { get; set; }
  31. public virtual User CreatedByUser { get; set; }
  32. public virtual User ModifiedByUser { get; set; }
  33. public virtual ICollection<InvoiceItem> InvoiceItems { get; set; }
  34. }
  35. }