Files
YouTube-Manager/Manager.YouTube/Util/Cipher/CipherDecoderCollection.cs
2025-10-23 19:27:07 +02:00

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