2022-04-14 17:38:52 +00:00
|
|
|
|
using Dalamud.Configuration;
|
|
|
|
|
|
2023-10-03 08:36:31 +00:00
|
|
|
|
namespace FishNotify;
|
2022-04-14 17:38:52 +00:00
|
|
|
|
|
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;
|
2022-04-14 17:38:52 +00:00
|
|
|
|
}
|