PowerShell/test/tools/WebListener/Constants.cs
Mark Kraus 95a8a64260 Replace HttpListener Response Tests with WebListener (#5540)
* Add Response Controller

* [Feature] Replace HttpListener Response tests with WebListener
2017-12-04 09:52:14 -08:00

16 lines
313 B
C#

using System;
namespace mvc.Controllers
{
internal static class Constants
{
public const string HeaderSeparator = ", ";
public const string ApplicationJson = "application/json";
}
internal static class StatusCodes
{
public const Int32 ApplicationError = 500;
}
}