1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-06 06:41:40 +02:00
Sonarr/NzbDrone.Core/Indexers/NzbsRUs/NzbsrusSettings.cs

23 lines
581 B
C#
Raw Normal View History

2013-04-07 10:30:37 +03:00
using System;
2013-05-03 08:24:52 +03:00
using NzbDrone.Core.Annotations;
2013-04-07 10:30:37 +03:00
namespace NzbDrone.Core.Indexers.NzbsRUs
{
public class NzbsrusSetting : IIndexerSetting
{
2013-05-03 08:24:52 +03:00
[FieldDefinition(0, Label = "UID", HelpText = "Your NzbsRus User ID")]
2013-04-07 10:30:37 +03:00
public String Uid { get; set; }
2013-05-03 08:24:52 +03:00
[FieldDefinition(1, Label = "Hash", HelpText = "Your API Hash Key")]
2013-04-07 10:30:37 +03:00
public String Hash { get; set; }
2013-05-03 08:24:52 +03:00
2013-04-07 10:30:37 +03:00
public bool IsValid
{
get
{
return !string.IsNullOrWhiteSpace(Uid) && !string.IsNullOrWhiteSpace(Hash);
}
}
}
}