Fixing class names

This commit is contained in:
Kira Jiroux 2025-02-19 10:10:19 -05:00
parent e239ed901a
commit 41ba3b79f1
3 changed files with 4 additions and 4 deletions

View File

@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace Portfolio.Domain.Features.Pokemon_Natures namespace Portfolio.Domain.Features.Pokemon_Natures
{ {
public class PokemonNatures public class PokemonNature
{ {
public int Id { get; set; } public int Id { get; set; }
public string Nature { get; set; } public string Nature { get; set; }

View File

@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace Portfolio.Domain.Features.Pokemon_Subskills namespace Portfolio.Domain.Features.Pokemon_Subskills
{ {
public class PokemonSubskills public class PokemonSubskill
{ {
public int Id { get; set; } public int Id { get; set; }
public string SubSkill { get; set; } public string SubSkill { get; set; }

View File

@ -18,8 +18,8 @@ namespace Portfolio.Infrastructure
} }
public DbSet<Pokemon> Pokemons { get; set; } public DbSet<Pokemon> Pokemons { get; set; }
public DbSet<PokemonNatures> PokemonNatures { get; set; } public DbSet<PokemonNature> PokemonNatures { get; set; }
public DbSet<PokemonSubskills> PokemonSubskills { get; set; } public DbSet<PokemonSubskill> PokemonSubskills { get; set; }
} }
} }