[REWORK] Changes saving client and channel info
This commit is contained in:
11
Manager.YouTube/YouTubeClientCollection.cs
Normal file
11
Manager.YouTube/YouTubeClientCollection.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System.Collections.ObjectModel;
|
||||
|
||||
namespace Manager.YouTube;
|
||||
|
||||
public class YouTubeClientCollection : KeyedCollection<string, YouTubeClient>
|
||||
{
|
||||
protected override string GetKeyForItem(YouTubeClient item)
|
||||
{
|
||||
return item.Id;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user