aspnetcore/src/Microsoft.AspNet.Mvc.ModelB.../Metadata/DisplayAttribute.cs

21 lines
410 B
C#

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();
}
}
}