PKHeX/PKHeX.Core/Game/ComboItem.cs
Evan Dixon 52c4fbbe97 Converted PKHeX.Core to .Net Standard
Refactored and rearranged things as needed to allow the change
2017-05-11 23:34:18 -05:00

8 lines
147 B
C#

namespace PKHeX.Core
{
public class ComboItem
{
public string Text { get; set; }
public int Value { get; set; }
}
}