WorkspaceBilling.cs 934 B

123456789101112131415161718192021222324252627
  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 Id { get; set; }
  9. public long WorkspaceId { get; set; }
  10. public long BillingPlanId { get; set; }
  11. public DateTime Created { get; set; }
  12. public DateTime? Modified { get; set; }
  13. public decimal ValueNumber { get; set; }
  14. public DateTime? ValueDate { get; set; }
  15. public int CustomPstinitialCredits { get; set; }
  16. public int CustomPstcreditsPerItem { get; set; }
  17. public bool CustomPstwatermark { get; set; }
  18. public int CustomPstquality { get; set; }
  19. public string CustomPstprocessProfile { get; set; }
  20. public bool CustomPsttest { get; set; }
  21. public virtual BillingPlan BillingPlan { get; set; }
  22. public virtual Workspace Workspace { get; set; }
  23. }
  24. }