namespace System.Web.Mvc { using System; using System.Collections.Generic; using System.Collections.ObjectModel; public class FieldValidationMetadata { private string _fieldName; private readonly Collection _validationRules = new Collection(); public string FieldName { get { return _fieldName ?? String.Empty; } set { _fieldName = value; } } public bool ReplaceValidationMessageContents { get; set; } public string ValidationMessageId { get; set; } public ICollection ValidationRules { get { return _validationRules; } } } }