Files
MileageTraker/Web/Attributes/CurrencyAttribute.cs
T
2015-10-08 00:04:17 -04:00

13 lines
247 B
C#

using System;
namespace MileageTraker.Web.Attributes
{
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)]
public class CurrencyAttribute : Attribute
{
public string Symbol
{
get { return "$"; }
}
}
}