BillingPlan.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. WorkspaceBillings = new HashSet<WorkspaceBilling>();
  12. }
  13. public long Id { get; set; }
  14. public string Name { get; set; }
  15. public string Code { get; set; }
  16. public string Description { get; set; }
  17. public int PstinitialCredits { get; set; }
  18. public int PstcreditsPerItem { get; set; }
  19. public bool Pstwatermark { get; set; }
  20. public int Pstquality { get; set; }
  21. public string PstprocessProfile { get; set; }
  22. public bool Psttest { get; set; }
  23. public decimal Price { get; set; }
  24. public string Currency { get; set; }
  25. public DateTime Created { get; set; }
  26. public DateTime? Modified { get; set; }
  27. public long CreatedByUserId { get; set; }
  28. public long? ModifiedByUserId { get; set; }
  29. public bool IsCustom { get; set; }
  30. public bool IsHidden { get; set; }
  31. public bool IsEnabled { get; set; }
  32. public virtual User CreatedByUser { get; set; }
  33. public virtual User ModifiedByUser { get; set; }
  34. public virtual ICollection<InvoiceItem> InvoiceItems { get; set; }
  35. public virtual ICollection<WorkspaceBilling> WorkspaceBillings { get; set; }
  36. }
  37. }