[CHANGE] Added old cipher implementation
This commit is contained in:
11
Manager.YouTube/Util/Cipher/CipherDecoderCollection.cs
Normal file
11
Manager.YouTube/Util/Cipher/CipherDecoderCollection.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System.Collections.ObjectModel;
|
||||
|
||||
namespace Manager.YouTube.Util.Cipher;
|
||||
|
||||
public class CipherDecoderCollection : KeyedCollection<string, CipherDecoder>
|
||||
{
|
||||
protected override string GetKeyForItem(CipherDecoder item)
|
||||
{
|
||||
return item.Version;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user