19 lines
438 B
C#
19 lines
438 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace PokemonSleepAPI.Models
|
|
{
|
|
public class PokemonNature
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
[Required]
|
|
public string Nature { get; set; }
|
|
[Required]
|
|
public int BerryRating { get; set; }
|
|
[Required]
|
|
public int IngredientRating { get; set; }
|
|
[Required]
|
|
public int SkillRating { get; set; }
|
|
}
|
|
}
|