using System; using System.Collections.Generic; #nullable disable namespace BO.AppServer.Data.Entity { public partial class Workspace { public Workspace() { BillingInfos = new HashSet(); Invoices = new HashSet(); Structures = new HashSet(); Tags = new HashSet(); WorkspaceBillings = new HashSet(); } public long Id { get; set; } public string Name { get; set; } public long? BillingInfoId { get; set; } public long BillingPlanId { get; set; } public Guid Apikey { get; set; } public string Apipassword { get; set; } public DateTime Created { get; set; } public DateTime? Modified { get; set; } public long CreatedByUserId { get; set; } public long? ModifiedByUserId { get; set; } public bool IsGold { get; set; } public virtual BillingInfo BillingInfo { get; set; } public virtual User CreatedByUser { get; set; } public virtual User ModifiedByUser { get; set; } public virtual ICollection BillingInfos { get; set; } public virtual ICollection Invoices { get; set; } public virtual ICollection Structures { get; set; } public virtual ICollection Tags { get; set; } public virtual ICollection WorkspaceBillings { get; set; } } }