7 lines
131 B
C#
7 lines
131 B
C#
|
namespace System.Web.Mvc {
|
|||
|
|
|||
|
public interface IModelBinderProvider {
|
|||
|
IModelBinder GetBinder(Type modelType);
|
|||
|
}
|
|||
|
}
|