19 lines
465 B
C#
19 lines
465 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Portfolio.Domain.Features.Pokemon
|
|
{
|
|
public class Pokemon
|
|
{
|
|
public int Id { get; set; }
|
|
public required string PokemonId { get; set; }
|
|
public required string PokemonName { get; set; }
|
|
public required string SleepType { get; set; }
|
|
public required string Speciality { get; set; }
|
|
|
|
}
|
|
}
|