using Umbraco.Cms.Core.Composing; namespace Umbraco.Cms.Core.Cache; public class CacheRefresherCollection : BuilderCollectionBase { public CacheRefresherCollection(Func> items) : base(items) { } public ICacheRefresher? this[Guid id] => this.FirstOrDefault(x => x.RefresherUniqueId == id); }