namespace Dalamud.Configuration { /// /// Additional locations to load dev plugins from. /// internal sealed class DevPluginLocationSettings { /// /// Gets or sets the dev pluign path. /// public string Path { get; set; } /// /// Gets or sets a value indicating whether the third party repo is enabled. /// public bool IsEnabled { get; set; } /// /// Clone this object. /// /// A shallow copy of this object. public DevPluginLocationSettings Clone() => this.MemberwiseClone() as DevPluginLocationSettings; } }