14 lines
529 B
C#
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; } = [];
|
|
} |