Fixing class names
This commit is contained in:
parent
e239ed901a
commit
41ba3b79f1
|
@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
|||
|
||||
namespace Portfolio.Domain.Features.Pokemon_Natures
|
||||
{
|
||||
public class PokemonNatures
|
||||
public class PokemonNature
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Nature { get; set; }
|
|
@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
|||
|
||||
namespace Portfolio.Domain.Features.Pokemon_Subskills
|
||||
{
|
||||
public class PokemonSubskills
|
||||
public class PokemonSubskill
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string SubSkill { get; set; }
|
|
@ -18,8 +18,8 @@ namespace Portfolio.Infrastructure
|
|||
|
||||
}
|
||||
public DbSet<Pokemon> Pokemons { get; set; }
|
||||
public DbSet<PokemonNatures> PokemonNatures { get; set; }
|
||||
public DbSet<PokemonSubskills> PokemonSubskills { get; set; }
|
||||
public DbSet<PokemonNature> PokemonNatures { get; set; }
|
||||
public DbSet<PokemonSubskill> PokemonSubskills { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue