mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-17 21:25:39 -04:00
11 lines
276 B
C#
11 lines
276 B
C#
namespace NzbDrone.Common.Options;
|
|
|
|
public class AuthOptions
|
|
{
|
|
public string ApiKey { get; set; }
|
|
public bool? Enabled { get; set; }
|
|
public string Method { get; set; }
|
|
public string Required { get; set; }
|
|
public bool? TrustCgnatIpAddresses { get; set; }
|
|
}
|