using System.Collections.ObjectModel; namespace Manager.YouTube; public class YouTubeClientCollection : KeyedCollection { protected override string GetKeyForItem(YouTubeClient item) { return item.Id; } }