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

22 lines
399 B
C#
Raw Normal View History

2018-06-29 19:52:40 +02:00
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
}
}