using System.Collections.ObjectModel; namespace Manager.YouTube.Interpreter; public class PlayerEngineCollection : KeyedCollection { protected override string GetKeyForItem(PlayerEngine item) { return item.Version; } }