21 lines
588 B
C#
21 lines
588 B
C#
namespace Gremlin_BlazorServer.Data.EntityClasses
|
|
{
|
|
public class RegisteredUser
|
|
{
|
|
//primary key
|
|
public uint RegisteredUserId { get; set; }
|
|
|
|
//navigation properties
|
|
public IList<RuSettings>? RuSettings { get; set; }
|
|
|
|
//class properties
|
|
public string? UserName { get; set; }
|
|
public string? PasswordHash { get; set; }
|
|
|
|
//metadata (subset of IMetadata)
|
|
public DateTime DataCreationDate { get; set; } = DateTime.Now;
|
|
public DateTime DataModificationDate { get; set; } = DateTime.Now;
|
|
public string DataModificationByUser { get; set; } = "Gremlin_BlazorServer";
|
|
}
|
|
}
|