2013-05-20 01:17:32 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using NzbDrone.Core.Annotations;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Notifications.Plex
|
|
|
|
|
{
|
|
|
|
|
public class PlexServerSettings : INotifcationSettings
|
|
|
|
|
{
|
|
|
|
|
[FieldDefinition(0, Label = "Host", HelpText = "Plex Server Host (IP or Hostname)")]
|
|
|
|
|
public String Host { get; set; }
|
|
|
|
|
|
2013-06-13 08:41:26 +02:00
|
|
|
|
[FieldDefinition(1, Label = "Port")]
|
|
|
|
|
public Int32 Port { get; set; }
|
|
|
|
|
|
|
|
|
|
[FieldDefinition(2, Label = "Update Library")]
|
2013-05-20 01:17:32 +02:00
|
|
|
|
public Boolean UpdateLibrary { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool IsValid
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return !string.IsNullOrWhiteSpace(Host);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|