[CHANGE] Added jint. Reworking decipher functionality

This commit is contained in:
max
2025-10-28 19:08:59 +01:00
parent b5c701b971
commit 4c04378080
4 changed files with 112 additions and 0 deletions

View 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;
}
}