Questionable/Questionable/Configuration.cs

11 lines
246 B
C#
Raw Normal View History

2024-06-08 11:30:26 +02:00
using Dalamud.Configuration;
using LLib.ImGui;
namespace Questionable;
internal sealed class Configuration : IPluginConfiguration
{
public int Version { get; set; } = 1;
public WindowConfig DebugWindowConfig { get; set; } = new();
}