// 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"; }