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