using System.Collections.Generic; using Umbraco.Core.Cache; namespace Umbraco.Core.Sync { /// /// Used for any 'Batched' instances which specifies a set of targeting a collection of /// /// public sealed class RefreshInstructionEnvelope { public RefreshInstructionEnvelope(ICacheRefresher refresher, IEnumerable instructions) { Refresher = refresher; Instructions = instructions; } public ICacheRefresher Refresher { get; set; } public IEnumerable Instructions { get; set; } } }