mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-05-30 12:42:27 +00:00
13 lines
No EOL
341 B
C#
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");
|
|
}
|
|
}
|
|
} |