PKHeX/PKHeX.Core/Saves/Substructures/Misc/SlotGroup.cs
2022-06-11 09:51:43 -07:00

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
}