11 lines
229 B
C#
11 lines
229 B
C#
using Dalamud.Configuration;
|
|
|
|
namespace AutoFishingStool;
|
|
|
|
public sealed class Configuration : IPluginConfiguration
|
|
{
|
|
public int Version { get; set; } = 1;
|
|
|
|
public bool StandDuringSpectralCurrents { get; set; } = true;
|
|
}
|