using System.Collections.ObjectModel; namespace Manager.YouTube.Util.Cipher; public class CipherDecoderCollection : KeyedCollection { protected override string GetKeyForItem(CipherDecoder item) { return item.Version; } }