2013-05-19 16:17:32 -07:00
|
|
|
using System;
|
|
|
|
using NzbDrone.Core.Annotations;
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Notifications.Plex
|
|
|
|
{
|
|
|
|
public class PlexServerSettings : INotifcationSettings
|
|
|
|
{
|
2013-08-08 23:22:26 -07:00
|
|
|
public PlexServerSettings()
|
|
|
|
{
|
|
|
|
Port = 32400;
|
|
|
|
}
|
|
|
|
|
2013-06-27 18:55:45 -07:00
|
|
|
[FieldDefinition(0, Label = "Host")]
|
2013-05-19 16:17:32 -07:00
|
|
|
public String Host { get; set; }
|
|
|
|
|
2013-06-12 23:41:26 -07:00
|
|
|
[FieldDefinition(1, Label = "Port")]
|
|
|
|
public Int32 Port { get; set; }
|
|
|
|
|
2013-06-27 18:55:45 -07:00
|
|
|
[FieldDefinition(2, Label = "Update Library", Type = FieldType.Checkbox)]
|
2013-05-19 16:17:32 -07:00
|
|
|
public Boolean UpdateLibrary { get; set; }
|
|
|
|
|
|
|
|
public bool IsValid
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
return !string.IsNullOrWhiteSpace(Host);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|