11 lines
262 B
C#
11 lines
262 B
C#
using System.Collections.ObjectModel;
|
|
|
|
namespace Manager.YouTube.Interpreter;
|
|
|
|
public class PlayerEngineCollection : KeyedCollection<string, PlayerEngine>
|
|
{
|
|
protected override string GetKeyForItem(PlayerEngine item)
|
|
{
|
|
return item.Version;
|
|
}
|
|
} |