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