PokemonSleepTools/PokemonSleepInterface/Models/PokemonNatureDto.cs

12 lines
311 B
C#

namespace PokemonSleepInterface.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; }
}
}