15 lines
307 B
C#
15 lines
307 B
C#
using System;
|
|
|
|
namespace MileageTraker.Web.Attributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)]
|
|
public class OptionLabelAttribute : Attribute
|
|
{
|
|
public string Text { get; private set; }
|
|
|
|
public OptionLabelAttribute(string text)
|
|
{
|
|
Text = text;
|
|
}
|
|
}
|
|
} |