12 lines
339 B
C#
12 lines
339 B
C#
|
|
using System.Collections.Generic;
|
||
|
|
using System.IO;
|
||
|
|
|
||
|
|
namespace Umbraco.Cms.Infrastructure.PublishedCache.DataSource
|
||
|
|
{
|
||
|
|
internal interface IDictionaryOfPropertyDataSerializer
|
||
|
|
{
|
||
|
|
IDictionary<string, PropertyData[]> ReadFrom(Stream stream);
|
||
|
|
void WriteTo(IDictionary<string, PropertyData[]> value, Stream stream);
|
||
|
|
}
|
||
|
|
}
|