* Run code cleanup * Finish dotnet format and manual cleanup * Fix according to review Co-authored-by: Zeegaan <nge@umbraco.dk>
9 lines
264 B
C#
9 lines
264 B
C#
namespace Umbraco.Cms.Infrastructure.PublishedCache.DataSource;
|
|
|
|
public interface IDictionaryOfPropertyDataSerializer
|
|
{
|
|
IDictionary<string, PropertyData[]> ReadFrom(Stream stream);
|
|
|
|
void WriteTo(IDictionary<string, PropertyData[]> value, Stream stream);
|
|
}
|