CurrencyAlertClassic/SamplePlugin/Attribute/SlotAttribute.cs

14 lines
229 B
C#
Raw Normal View History

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