11 lines
265 B
C#
11 lines
265 B
C#
using System.Collections.ObjectModel;
|
|
|
|
namespace Manager.YouTube.Util.Cipher;
|
|
|
|
public class CipherDecoderCollection : KeyedCollection<string, CipherDecoder>
|
|
{
|
|
protected override string GetKeyForItem(CipherDecoder item)
|
|
{
|
|
return item.Version;
|
|
}
|
|
} |