Files
Umbraco-CMS/src/Umbraco.Core/Serialization/Formatter.cs
2018-06-29 19:52:40 +02:00

22 lines
399 B
C#

using System;
namespace Umbraco.Core.Serialization
{
public class Formatter : IFormatter
{
#region Implementation of IFormatter
public string Intent
{
get { throw new NotImplementedException(); }
}
public ISerializer Serializer
{
get { throw new NotImplementedException(); }
}
#endregion
}
}