Files
Alexandru Macocian 867fa12a6c Support for interpolated URLs
Implemented use of TypeConverters for requests and responses
2021-09-29 00:41:36 +02:00

11 lines
216 B
C#

using System.ComponentModel;
using MTSC.Common.Http.RoutingModules;
namespace MTSC.UnitTests.RoutingModules
{
[TypeConverter(typeof(SomeResponseConverter))]
public class SomeRoutingResponse
{
}
}