1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-21 00:41:43 +02:00
Radarr/NzbDrone.Core/Indexers/Omgwtfnzbs/OmgwtfnzbsSettings.cs
2013-05-29 00:20:57 -07:00

23 lines
542 B
C#

using System;
using NzbDrone.Core.Annotations;
namespace NzbDrone.Core.Indexers.Omgwtfnzbs
{
public class OmgwtfnzbsSetting : IIndexerSetting
{
[FieldDefinition(0, Label = "Username")]
public String Username { get; set; }
[FieldDefinition(1, Label = "API Key")]
public String ApiKey { get; set; }
public bool IsValid
{
get
{
return !string.IsNullOrWhiteSpace(Username) && !string.IsNullOrWhiteSpace(ApiKey);
}
}
}
}