PokemonSleepTools/PokemonSleepWeb/PokemonSleepWeb.Client/Models/PokemonDto.cs

11 lines
257 B
C#

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