CurrencyAlertClassic/SamplePlugin/Attribute/DefaultThresholdAttribute.cs

14 lines
253 B
C#
Raw Normal View History

2022-01-05 14:46:15 +00:00
using System;
namespace CurrencyAlert
{
internal class DefaultThresholdAttribute : Attribute
{
public DefaultThresholdAttribute(int v)
{
Value = v;
}
public int Value { get; }
}
}