using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Portfolio.Domain.Features.Dtos { public class PokemonDto { public int Id { get; set; } public int PokemonId { get; set; } public required string PokemonName { get; set; } public bool IsVariation { get; set; } = false; public string? VariationName { get; set; } public required string SleepType { get; set; } public required string Speciality { get; set; } } }