2025-03-02 12:51:02 +01:00

12 lines
384 B
C#

using W542.GandalfReborn.Data.Entities.Base;
namespace W542.GandalfReborn.Data.Entities.Subject.SignIn;
public class SignInEntity : SubjectData
{
public required SignInMethod Method { get; set; }
public required bool IsLegacy { get; set; }
public string? Email { get; set; }
public string? PasswordHash { get; set; }
public SubjectEntity? Subject { get; set; }
}