Merge pull request #249 from pcc/xgetinputfocus
[mono.git] / mcs / class / System.Web.Mvc3 / Mvc / ModelState.cs
1 namespace System.Web.Mvc {
2
3     [Serializable]
4     public class ModelState {
5
6         private ModelErrorCollection _errors = new ModelErrorCollection();
7
8         public ValueProviderResult Value {
9             get;
10             set;
11         }
12
13         public ModelErrorCollection Errors {
14             get {
15                 return _errors;
16             }
17         }
18     }
19 }