PKHeX/PKHeX.Core/Saves/Substructures/Misc/SlotGroup.cs
2021-12-05 23:54:59 -08:00

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
}