4efc071cce
* Move SamplePlugin to CurrencyAlert to match plugin name
* Adjustments for API 7
- Bump DalamudPackager to 2.1.8
- Switch to .Net 6
- Remove builds to devPlugins. Dalamud will be phasing this out Soon™️
* Modifications needed for DalamudPlugins D17
14 lines
240 B
C#
14 lines
240 B
C#
using System;
|
|
|
|
namespace CurrencyAlert
|
|
{
|
|
internal class DefaultThresholdAttribute : Attribute
|
|
{
|
|
public DefaultThresholdAttribute(int v)
|
|
{
|
|
Value = v;
|
|
}
|
|
|
|
public int Value { get; }
|
|
}
|
|
} |