using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Portfolio.Domain.Pokemon { public class Pokemon { public int Id { get; set; } public string PokemonId { get; set; } public string PokemonName { get; set; } public string SleepType { get; set; } public string Speciality { get; set; } } }