You've already forked linux-packaging-mono
18 lines
445 B
C#
18 lines
445 B
C#
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
|
|
|
|
namespace System.Web.Mvc
|
|
{
|
|
[Serializable]
|
|
public class ModelState
|
|
{
|
|
private ModelErrorCollection _errors = new ModelErrorCollection();
|
|
|
|
public ValueProviderResult Value { get; set; }
|
|
|
|
public ModelErrorCollection Errors
|
|
{
|
|
get { return _errors; }
|
|
}
|
|
}
|
|
}
|