if I have the following:
MySimpleTestController : ApiController
{
}
Is it possible to have the controller name appear as "My Simple Test" instead of "MySimpleTest" in the generated API docs?
I did a search but I mostly found ways to do it in Java using an @Api annotation but I am using C# (.net 4.5.2).
Here is one way to do it but it requires adding an annotation to every single route in the Controller which would be cumbersome as my controller has many routes. Is there a better way?