22 lines
399 B
C#
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
|
|
}
|
|
}
|