diff --git a/src/NadekoBot/Modules/Searches/Commands/Models/PokeStats.cs b/src/NadekoBot/Modules/Searches/Commands/Models/PokeStats.cs deleted file mode 100644 index b9795043..00000000 --- a/src/NadekoBot/Modules/Searches/Commands/Models/PokeStats.cs +++ /dev/null @@ -1,15 +0,0 @@ -using System.Collections.Generic; - -namespace NadekoBot.Modules.Pokemon -{ - class PokeStats - { - //Health left - public int Hp { get; set; } = 500; - public int MaxHp { get; } = 500; - //Amount of moves made since last time attacked - public int MovesMade { get; set; } = 0; - //Last people attacked - public List LastAttacked { get; set; } = new List(); - } -}