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