8 lines
157 B
C#
Raw Normal View History

namespace System.Web.Mvc {
using System.Web.Routing;
public interface IController {
void Execute(RequestContext requestContext);
}
}