ProjectMakoto.Plugins.Example/Entities/PluginConfig.cs
2025-01-27 17:26:51 +01:00

10 lines
301 B
C#

// Project Makoto Example Plugin
// Copyright (C) 2023 Fortunevale
// This code is licensed under MIT license (see 'LICENSE'-file for details)
namespace ProjectMakoto.Plugins.Example.Entities;
public class PluginConfig
{
public string ExampleString { get; set; } = "Example Config Option";
}