namespace PokemonSleepInterface.Models
{
public class PokemonDto
public int Id { get; set; }
public string Name { get; set; }
public string SleepType { get; set; }
public string Speciality { get; set; }
}