Add currency attribute

This commit is contained in:
2015-10-08 00:04:17 -04:00
parent b962ecb119
commit 13fc366dc5
4 changed files with 34 additions and 5 deletions
+13
View File
@@ -0,0 +1,13 @@
using System;
namespace MileageTraker.Web.Attributes
{
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)]
public class CurrencyAttribute : Attribute
{
public string Symbol
{
get { return "$"; }
}
}
}