Files
MileageTraker/Web/Attributes/FormatHintAttribute.cs
2012-12-24 21:18:41 -05:00

15 lines
305 B
C#

using System;
namespace MileageTraker.Web.Attributes
{
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)]
public class FormatHintAttribute : Attribute
{
public string Text { get; private set; }
public FormatHintAttribute(string text)
{
Text = text;
}
}
}