I am using swagger for my api documentation but it seems that swagger only detact only those class that inherit ApiController not those classes those inherit basecontroller Am i right? Or there is some way to make swagger work with mvc controller.
Example:-
Public myController:ApiController
Works fine but
Public myController:BaseController
Doesn't work.