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
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|