mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-20 12:48:30 -05:00
10 lines
206 B
C#
10 lines
206 B
C#
namespace PKHeX.Core;
|
|
|
|
public sealed record SlotGroup(string GroupName, PKM[] Slots)
|
|
{
|
|
#if DEBUG
|
|
public override string ToString() => $"{GroupName}: {Slots.Length} {Slots.GetType().Name}";
|
|
#endif
|
|
}
|
|
|