gandalf-reborn/Data/Entities/Subject/SubjectEntity.cs
2025-03-02 12:51:02 +01:00

14 lines
529 B
C#

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<SignInEntity> SignInMethods { get; set; } = [];
public HashSet<TenantEntity> Tenants { get; set; } = [];
public HashSet<AppRelationEntity> Apps { get; set; } = [];
}