namespace Dalamud.Configuration.Internal { /// /// Settings for DevPlugins. /// internal sealed class DevPluginSettings { /// /// Gets or sets a value indicating whether this plugin should automatically start when Dalamud boots up. /// public bool StartOnBoot { get; set; } = true; /// /// Gets or sets a value indicating whether this plugin should automatically reload on file change. /// public bool AutomaticReloading { get; set; } = false; } }