using System; using System.Collections.Generic; #nullable disable namespace BO.AppServer.Data.Entity { public partial class UserWorkspace { public long UserId { get; set; } public long WorkspaceId { get; set; } public bool IsDefault { get; set; } public virtual User User { get; set; } public virtual Workspace Workspace { get; set; } } }