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