namespace PKHeX.Core; /// /// Provides details about the save file's Game Sync identifier. /// public interface IGameSync { int GameSyncIDSize { get; } string GameSyncID { get; set; } }