System.ComponentModel.DataAnnotations.DisplayAttribute
Provides a general-purpose attribute that lets you specify localizable strings for types and members of entity partial classes.
namespace System.ComponentModel.DataAnnotations
{
public sealed class DisplayAttribute : Attribute
{
public string ShortName { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string Prompt { get; set; }
public string GroupName { get; set; }
public Type ResourceType { get; set; }
public bool AutoGenerateField { get; set; }
public bool AutoGenerateFilter { get; set; }
public int Order { get; set; }
public string GetShortName();
public string GetName();
public string GetDescription();
public string GetPrompt();
public string GetGroupName();
public bool? GetAutoGenerateField();
public bool? GetAutoGenerateFilter();
public int? GetOrder();
public DisplayAttribute();
}
}