using System.Collections.Generic; namespace PKHeX.Core; public interface IRentalTeam where T : PKM { T GetSlot(int slot); void SetSlot(int slot, T pk); T[] GetTeam(); void SetTeam(IReadOnlyList team); }