Workspace.cs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace BO.AppServer.Data.Entity
  5. {
  6. public partial class Workspace
  7. {
  8. public Workspace()
  9. {
  10. BillingInfos = new HashSet<BillingInfo>();
  11. Invoices = new HashSet<Invoice>();
  12. Structures = new HashSet<Structure>();
  13. Tags = new HashSet<Tag>();
  14. WorkspaceBillings = new HashSet<WorkspaceBilling>();
  15. }
  16. public long Id { get; set; }
  17. public string Name { get; set; }
  18. public long? BillingInfoId { get; set; }
  19. public long BillingPlanId { get; set; }
  20. public Guid Apikey { get; set; }
  21. public string Apipassword { get; set; }
  22. public DateTime Created { get; set; }
  23. public DateTime? Modified { get; set; }
  24. public long CreatedByUserId { get; set; }
  25. public long? ModifiedByUserId { get; set; }
  26. public bool IsGold { get; set; }
  27. public virtual BillingInfo BillingInfo { get; set; }
  28. public virtual User CreatedByUser { get; set; }
  29. public virtual User ModifiedByUser { get; set; }
  30. public virtual ICollection<BillingInfo> BillingInfos { get; set; }
  31. public virtual ICollection<Invoice> Invoices { get; set; }
  32. public virtual ICollection<Structure> Structures { get; set; }
  33. public virtual ICollection<Tag> Tags { get; set; }
  34. public virtual ICollection<WorkspaceBilling> WorkspaceBillings { get; set; }
  35. }
  36. }