mirror of
https://github.com/AlexMacocian/MTSC.git
synced 2026-07-15 23:09:32 +00:00
867fa12a6c
Implemented use of TypeConverters for requests and responses
11 lines
216 B
C#
11 lines
216 B
C#
using System.ComponentModel;
|
|
using MTSC.Common.Http.RoutingModules;
|
|
|
|
namespace MTSC.UnitTests.RoutingModules
|
|
{
|
|
[TypeConverter(typeof(SomeResponseConverter))]
|
|
public class SomeRoutingResponse
|
|
{
|
|
}
|
|
}
|