Files
linux-packaging-mono/mcs/class/System.Web.Mvc3/Mvc/ModelBinderProviders.cs

14 lines
368 B
C#
Raw Normal View History

namespace System.Web.Mvc {
public static class ModelBinderProviders {
private readonly static ModelBinderProviderCollection _binderProviders = new ModelBinderProviderCollection {
};
public static ModelBinderProviderCollection BinderProviders {
get {
return _binderProviders;
}
}
}
}