Files
Umbraco-CMS/src/Umbraco.Core/Serialization/IFormatter.cs
Morten@Thinkpad-X220 51165cf614 Enabling nuget package restore and removing referenced nupkg files from repo U4-997
Implement Serialization framework from v5 U4-968
2012-10-08 09:51:13 -02:00

9 lines
167 B
C#

namespace Umbraco.Core.Serialization
{
public interface IFormatter
{
string Intent { get; }
ISerializer Serializer { get; }
}
}