API V1 Aeldria

This commit is contained in:
2026-06-23 13:32:17 +02:00
commit b56c82d229
164 changed files with 5666 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
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; }
}