1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-03-04 18:38:14 +00:00
Lidarr/NzbDrone.Core/Indexers/NzbsRUs/NzbsrusSettings.cs

23 lines
514 B
C#
Raw Normal View History

2013-04-07 00:30:37 -07:00
using System;
2013-05-02 22:24:52 -07:00
using NzbDrone.Core.Annotations;
2013-04-07 00:30:37 -07:00
namespace NzbDrone.Core.Indexers.NzbsRUs
{
public class NzbsrusSetting : IIndexerSetting
{
2013-05-29 00:06:25 -07:00
[FieldDefinition(0, Label = "UID")]
2013-04-07 00:30:37 -07:00
public String Uid { get; set; }
2013-05-02 22:24:52 -07:00
2013-05-29 00:06:25 -07:00
[FieldDefinition(1, Label = "Hash")]
2013-04-07 00:30:37 -07:00
public String Hash { get; set; }
2013-05-02 22:24:52 -07:00
2013-04-07 00:30:37 -07:00
public bool IsValid
{
get
{
return !string.IsNullOrWhiteSpace(Uid) && !string.IsNullOrWhiteSpace(Hash);
}
}
}
}