using System.Collections.Generic; using System.IO; namespace Umbraco.Cms.Infrastructure.PublishedCache.DataSource { public interface IDictionaryOfPropertyDataSerializer { IDictionary ReadFrom(Stream stream); void WriteTo(IDictionary value, Stream stream); } }