Workspace.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. }
  15. // public long Id { get; set; }
  16. public string Name { get; set; }
  17. public long BillingInfoId { get; set; }
  18. public long BillingPlanId { get; set; }
  19. public Guid Apikey { get; set; }
  20. public string Apipassword { get; set; }
  21. public DateTime Created { get; set; }
  22. public DateTime? Modified { get; set; }
  23. public long CreatedByUserId { get; set; }
  24. public long? ModifiedByUserId { get; set; }
  25. public bool IsGold { get; set; }
  26. public virtual BillingInfo BillingInfo { get; set; }
  27. public virtual User CreatedByUser { get; set; }
  28. public virtual User ModifiedByUser { get; set; }
  29. public virtual ICollection<BillingInfo> BillingInfos { get; set; }
  30. public virtual ICollection<Invoice> Invoices { get; set; }
  31. public virtual ICollection<Structure> Structures { get; set; }
  32. public virtual ICollection<Tag> Tags { get; set; }
  33. }
  34. }