1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core/Indexers/Omgwtfnzbs/OmgwtfnzbsSettings.cs

23 lines
542 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.Omgwtfnzbs
{
public class OmgwtfnzbsSetting : IIndexerSetting
{
2013-05-29 10:06:25 +03:00
[FieldDefinition(0, Label = "Username")]
2013-04-07 10:30:37 +03:00
public String Username { get; set; }
2013-05-03 08:24:52 +03:00
2013-05-29 10:06:25 +03:00
[FieldDefinition(1, Label = "API Key")]
2013-04-07 10:30:37 +03:00
public String ApiKey { get; set; }
public bool IsValid
{
get
{
return !string.IsNullOrWhiteSpace(Username) && !string.IsNullOrWhiteSpace(ApiKey);
}
}
}
}