13 lines
309 B
C#
13 lines
309 B
C#
namespace LMS.Common.Attributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Field)]
|
|
public class DescriptionAttribute : Attribute
|
|
{
|
|
public string Description { get; set; }
|
|
|
|
public DescriptionAttribute(string description)
|
|
{
|
|
Description = description;
|
|
}
|
|
}
|
|
} |