using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Microsoft.AspNet.Mvc.ModelBinding { public class DisplayAttribute : Attribute { internal string GetDescription() { throw new NotImplementedException(); } internal string GetName() { throw new NotImplementedException(); } } }