mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
23 lines
581 B
C#
23 lines
581 B
C#
using System;
|
|
using NzbDrone.Core.Annotations;
|
|
|
|
namespace NzbDrone.Core.Indexers.NzbsRUs
|
|
{
|
|
public class NzbsrusSetting : IIndexerSetting
|
|
{
|
|
[FieldDefinition(0, Label = "UID", HelpText = "Your NzbsRus User ID")]
|
|
public String Uid { get; set; }
|
|
|
|
[FieldDefinition(1, Label = "Hash", HelpText = "Your API Hash Key")]
|
|
public String Hash { get; set; }
|
|
|
|
public bool IsValid
|
|
{
|
|
get
|
|
{
|
|
return !string.IsNullOrWhiteSpace(Uid) && !string.IsNullOrWhiteSpace(Hash);
|
|
}
|
|
}
|
|
}
|
|
}
|