Files
UmlautAdaptarr/UmlautAdaptarr/Options/ArrOptions/InstanceOptions/GlobalInstanceOptions.cs
Felix Glang 52acb5ff6e Fix named IOption Bug
Fix  named IOption Bug
2024-04-27 21:27:04 +02:00

26 lines
656 B
C#

namespace UmlautAdaptarr.Options.ArrOptions.InstanceOptions
{
public class GlobalInstanceOptions
{
/// <summary>
/// Indicates whether the Arr application is enabled.
/// </summary>
public bool Enabled { get; set; }
/// <summary>
/// Name of the Instance
/// </summary>
public string Name { get; set; }
/// <summary>
/// The host of the ARR application.
/// </summary>
public string Host { get; set; }
/// <summary>
/// The API key of the ARR application.
/// </summary>
public string ApiKey { get; set; }
}
}