15 lines
242 B
C#
15 lines
242 B
C#
using System;
|
|
|
|
namespace CurrencyAlert.Enum
|
|
{
|
|
internal class NameAttribute : Attribute
|
|
{
|
|
public NameAttribute(string v)
|
|
{
|
|
Value = v;
|
|
}
|
|
|
|
public string Value { get; }
|
|
}
|
|
}
|