[CHANGE] Added jint. Reworking decipher functionality
This commit is contained in:
11
Manager.YouTube/Interpreter/PlayerEngineCollection.cs
Normal file
11
Manager.YouTube/Interpreter/PlayerEngineCollection.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System.Collections.ObjectModel;
|
||||
|
||||
namespace Manager.YouTube.Interpreter;
|
||||
|
||||
public class PlayerEngineCollection : KeyedCollection<string, PlayerEngine>
|
||||
{
|
||||
protected override string GetKeyForItem(PlayerEngine item)
|
||||
{
|
||||
return item.Version;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user