using System; using System.Collections.Generic; namespace administration.Models; public partial class User { public int Id { get; set; } public string Username { get; set; } = null!; public string PasswordHash { get; set; } = null!; public string? ResetToken { get; set; } public DateTimeOffset? ResetTokenExpiresAt { get; set; } public DateTimeOffset CreatedAt { get; set; } }