WorkspaceBilling.cs 894 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace BO.AppServer.Data.Entity
  5. {
  6. public partial class WorkspaceBilling
  7. {
  8. public long WorkspaceId { get; set; }
  9. public long BillingPlanId { get; set; }
  10. public DateTime Created { get; set; }
  11. public DateTime? Modified { get; set; }
  12. public decimal ValueNumber { get; set; }
  13. public DateTime? ValueDate { get; set; }
  14. public int CustomPstinitialCredits { get; set; }
  15. public int CustomPstcreditsPerItem { get; set; }
  16. public bool CustomPstwatermark { get; set; }
  17. public int CustomPstquality { get; set; }
  18. public string CustomPstprocessProfile { get; set; }
  19. public bool CustomPsttest { get; set; }
  20. public virtual BillingPlan BillingPlan { get; set; }
  21. public virtual Workspace Workspace { get; set; }
  22. }
  23. }