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 string? PokemonType { get; set; }
        public required string SleepType { get; set; }
        public required string Speciality { get; set; }
        public string? PokemonImageUrl { get; set; }
        public string? PokemonShinyImageUrl { get; set; }
        public string? FlavorText { get; set; }

    }

}