using System.ComponentModel.DataAnnotations; namespace GameList.Domain; public class Player { public Guid Id { get; set; } = Guid.NewGuid(); [MaxLength(64)] public string? DisplayName { get; set; } [MaxLength(64)] public string Username { get; set; } = string.Empty; [MaxLength(64)] public string NormalizedUsername { get; set; } = string.Empty; public byte[] PasswordHash { get; set; } = Array.Empty(); public byte[] PasswordSalt { get; set; } = Array.Empty(); public DateTimeOffset? LastLoginAt { get; set; } public DateTimeOffset CreatedAt { get; set; } = DateTimeOffset.UtcNow; public ICollection Suggestions { get; set; } = new List(); public ICollection Votes { get; set; } = new List(); }