11 lines
248 B
C#
11 lines
248 B
C#
using System.Collections.ObjectModel;
|
|
|
|
namespace Manager.YouTube;
|
|
|
|
public class YouTubeClientCollection : KeyedCollection<string, YouTubeClient>
|
|
{
|
|
protected override string GetKeyForItem(YouTubeClient item)
|
|
{
|
|
return item.Id;
|
|
}
|
|
} |