21 lines
444 B
C#
21 lines
444 B
C#
namespace Aeldria.Api.Models;
|
|
|
|
public class Account
|
|
{
|
|
public long AccountId { get; set; }
|
|
|
|
public string Username { get; set; } = string.Empty;
|
|
|
|
public string Email { get; set; } = string.Empty;
|
|
|
|
public string PasswordHash { get; set; } = string.Empty;
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
public DateTime? LastLogin { get; set; }
|
|
|
|
public bool IsBanned { get; set; }
|
|
|
|
public bool IsVerified { get; set; }
|
|
}
|