12 lines
384 B
C#
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; }
|
|
} |