mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-18 08:23:12 +00:00
9 lines
206 B
C#
9 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
|
|
}
|
|
|