mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-15 13:14:17 +01:00
31 lines
860 B
C#
31 lines
860 B
C#
namespace Dalamud.Configuration
|
|
{
|
|
/// <summary>
|
|
/// Third party repository for dalamud plugins.
|
|
/// </summary>
|
|
internal class ThirdRepoSetting
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the third party repo url.
|
|
/// </summary>
|
|
public string Url { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether the third party repo is enabled.
|
|
/// </summary>
|
|
public bool IsEnabled { get; set; }
|
|
|
|
/// <summary>
|
|
/// Create new instance of third party repo object.
|
|
/// </summary>
|
|
/// <returns>New instance of third party repo.</returns>
|
|
public ThirdRepoSetting Clone()
|
|
{
|
|
return new ThirdRepoSetting
|
|
{
|
|
Url = this.Url,
|
|
IsEnabled = this.IsEnabled,
|
|
};
|
|
}
|
|
}
|
|
}
|