7 lines
131 B
C#
Raw Normal View History

namespace System.Web.Mvc {
public interface IModelBinderProvider {
IModelBinder GetBinder(Type modelType);
}
}