ProjectLighthouse/ProjectLighthouse/Serialization/XmlOutputFormatter.cs
2021-10-31 16:46:56 -04:00

13 lines
No EOL
341 B
C#

using Microsoft.AspNetCore.Mvc.Formatters;
namespace LBPUnion.ProjectLighthouse.Serialization
{
public class XmlOutputFormatter : StringOutputFormatter
{
public XmlOutputFormatter()
{
this.SupportedMediaTypes.Add("text/xml");
this.SupportedMediaTypes.Add("application/xml");
}
}
}