CurrencyAlertClassic/SamplePlugin/Attribute/DefaultThresholdAttribute.cs
2022-01-05 15:46:15 +01:00

14 lines
253 B
C#

using System;
namespace CurrencyAlert
{
internal class DefaultThresholdAttribute : Attribute
{
public DefaultThresholdAttribute(int v)
{
Value = v;
}
public int Value { get; }
}
}