CurrencyAlertClassic/SamplePlugin/Attribute/ItemIDAttribute.cs
2022-01-20 00:01:25 +01:00

14 lines
233 B
C#

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