using API.DTOs.Account; using API.Entities.Enums; namespace API.DTOs; public class UserDto { public string Username { get; init; } public string Email { get; init; } public string Token { get; set; } public string RefreshToken { get; set; } public string ApiKey { get; init; } public UserPreferencesDto Preferences { get; set; } public AgeRestrictionDto AgeRestriction { get; init; } }