Files
YouTube-Manager/Manager.YouTube/YouTubeClientCollection.cs

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