mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-15 05:04:15 +01:00
20 lines
456 B
C#
20 lines
456 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Dalamud.Configuration
|
|
{
|
|
class ThirdRepoSetting {
|
|
public string Url { get; set; }
|
|
public bool IsEnabled { get;set; }
|
|
|
|
public ThirdRepoSetting Clone() {
|
|
return new ThirdRepoSetting {
|
|
Url = this.Url,
|
|
IsEnabled = this.IsEnabled
|
|
};
|
|
}
|
|
}
|
|
}
|