CurrencyAlertClassic/SamplePlugin/Attribute/NameAttribute.cs

15 lines
242 B
C#
Raw Normal View History

2022-01-06 09:56:52 +00:00
using System;
namespace CurrencyAlert.Enum
{
internal class NameAttribute : Attribute
{
public NameAttribute(string v)
{
Value = v;
}
public string Value { get; }
}
}