Files
Umbraco-CMS/src/Umbraco.Core/Serialization/IFormatter.cs

10 lines
160 B
C#
Raw Normal View History

2018-06-29 19:52:40 +02:00
namespace Umbraco.Core.Serialization
{
public interface IFormatter
{
string Intent { get; }
ISerializer Serializer { get; }
}
}