14 lines
233 B
C#
14 lines
233 B
C#
using System;
|
|
|
|
namespace CurrencyAlert
|
|
{
|
|
internal class ItemIDAttribute : Attribute
|
|
{
|
|
public ItemIDAttribute(int v)
|
|
{
|
|
Value = v;
|
|
}
|
|
|
|
public int Value { get; }
|
|
}
|
|
} |