PokemonSleepTools/PokemonSleepWeb/PokemonSleepWeb.Client/Models/PokemonNatureDto.cs

12 lines
312 B
C#

namespace PokemonSleepWeb.Client.Models
{
public class PokemonNatureDto
{
public int Id { get; set; }
public string Nature { get; set; }
public int BerryRating { get; set; }
public int IngredientRating { get; set; }
public int SkillRating { get; set; }
}
}