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; } } }