using W542.GandalfReborn.Data.Entities.App; using W542.GandalfReborn.Data.Entities.Base; using W542.GandalfReborn.Data.Entities.Subject.SignIn; using W542.GandalfReborn.Data.Entities.Tenant; namespace W542.GandalfReborn.Data.Entities.Subject; public class SubjectEntity : VisibilityData { public required string Name { get; set; } public HashSet SignInMethods { get; set; } = []; public HashSet Tenants { get; set; } = []; public HashSet Apps { get; set; } = []; }