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

14 lines
229 B
C#

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