mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-26 23:06:43 -04:00
b2afbc6872
(cherry picked from commit 4c41a4f368046f73f82306bbd73bec992392938b)
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; }
|
|
}
|