mirror of
https://github.com/AlexMacocian/MTSC.git
synced 2026-07-18 16:29:31 +00:00
50669ad289
Implemented DI based routes. Implemented converters for HttpRequest and HttpResponse. Fixed e2e tests.
10 lines
189 B
C#
10 lines
189 B
C#
using MTSC.Common.Http.RoutingModules;
|
|
|
|
namespace MTSC.UnitTests.RoutingModules
|
|
{
|
|
[ResponseConvert(typeof(SomeResponseConverter))]
|
|
public class SomeRoutingResponse
|
|
{
|
|
}
|
|
}
|