mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-25 18:09:17 +01:00
24 lines
746 B
C#
24 lines
746 B
C#
using System;
|
|
|
|
namespace Dalamud.Configuration.Internal;
|
|
|
|
/// <summary>
|
|
/// Settings for DevPlugins.
|
|
/// </summary>
|
|
internal sealed class DevPluginSettings
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether this plugin should automatically start when Dalamud boots up.
|
|
/// </summary>
|
|
public bool StartOnBoot { get; set; } = true;
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether this plugin should automatically reload on file change.
|
|
/// </summary>
|
|
public bool AutomaticReloading { get; set; } = false;
|
|
|
|
/// <summary>
|
|
/// Gets or sets an ID uniquely identifying this specific instance of a devPlugin.
|
|
/// </summary>
|
|
public Guid WorkingPluginId { get; set; } = Guid.Empty;
|
|
}
|