mirror of
https://github.com/AlexMacocian/MTSC.git
synced 2026-07-24 12:06:38 +00:00
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
|
|
{
|
|
}
|
|
}
|