mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 16:48:01 +00:00
2e1081086d
Split evolution data specific DexLevel properties from DexLevel use IReadOnlyList instead of IList for covariant collection
11 lines
No EOL
286 B
C#
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; }
|
|
}
|
|
} |