Files
PepperDashCore/src/Pepperdash.Core/Web/RequestHandlers/DefaultRequestHandler.cs
Nick Genovese 9c9d2cfe02 fix: sln names and package versions
- adjusted the sln and csproj name
- bumped the crestron sdk
- added in newtonsoft 13.0 conditionally for net6/8
- fixed a few issues where we were using crestron newtonsoft specific methods
2024-10-30 15:47:16 -04:00

17 lines
354 B
C#

namespace PepperDash.Core.Web.RequestHandlers
{
/// <summary>
/// Web API default request handler
/// </summary>
public class DefaultRequestHandler : WebApiBaseRequestHandler
{
/// <summary>
/// Constructor
/// </summary>
public DefaultRequestHandler()
: base(true)
{ }
}
}