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