FishNotify/Configuration.cs

10 lines
211 B
C#
Raw Permalink Normal View History

using Dalamud.Configuration;
2023-10-03 08:36:31 +00:00
namespace FishNotify;
2023-10-03 08:36:31 +00:00
internal sealed class Configuration : IPluginConfiguration
{
public int Version { get; set; } = 0;
public bool ChatAlerts { get; set; } = false;
}