18 lines
438 B
C#
18 lines
438 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Portfolio.Domain.Features.Pokemon_Natures
|
|
{
|
|
public class PokemonNature
|
|
{
|
|
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; }
|
|
}
|
|
}
|