exciting-aftermath/Portfolio.Domain/Features/Pokemon/Pokemon.cs

21 lines
578 B
C#

using Portfolio.Domain.Features.Abstractions;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Portfolio.Domain.Features.Pokemon
{
public class Pokemon : Entity
{
public int PokemonId { get; set; }
public required string PokemonName { get; set; }
public bool IsVariation { get; set; } = false;
public string? VariationName { get; set; }
public required string SleepType { get; set; }
public required string Speciality { get; set; }
}
}