PKHeX/PKHeX.Core/Legality/Evolutions/DexLevel.cs
Kurt 2e1081086d Refactoring
Split evolution data specific DexLevel properties from DexLevel

use IReadOnlyList instead of IList for covariant collection
2018-06-18 19:10:21 -07:00

11 lines
No EOL
286 B
C#

namespace PKHeX.Core
{
/// <summary>
/// Small general purpose value passing object with misc data pertaining to an encountered Species.
/// </summary>
public class DexLevel
{
public int Species { get; set; }
public int Level { get; set; }
}
}