mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-26 22:10:21 +00:00
8 lines
205 B
C#
8 lines
205 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
|
|
}
|