1
0
Fork 0
Questionable/GatheringPathRenderer/Configuration.cs

10 lines
222 B
C#
Raw Normal View History

2024-08-03 19:33:52 +00:00
using Dalamud.Configuration;
namespace GatheringPathRenderer;
internal sealed class Configuration : IPluginConfiguration
{
public int Version { get; set; } = 1;
public string AuthorName { get; set; } = "?";
}