2013-05-20 01:17:32 +02:00
|
|
|
|
using System;
|
|
|
|
|
using NzbDrone.Core.Annotations;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Notifications.Plex
|
|
|
|
|
{
|
|
|
|
|
public class PlexClientSettings : INotifcationSettings
|
|
|
|
|
{
|
2013-08-09 08:22:26 +02:00
|
|
|
|
public PlexClientSettings()
|
|
|
|
|
{
|
|
|
|
|
Port = 3000;
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-28 03:55:45 +02:00
|
|
|
|
[FieldDefinition(0, Label = "Host")]
|
2013-05-20 01:17:32 +02:00
|
|
|
|
public String Host { get; set; }
|
|
|
|
|
|
2013-06-28 03:55:45 +02:00
|
|
|
|
[FieldDefinition(1, Label = "Port")]
|
2013-05-20 01:17:32 +02:00
|
|
|
|
public Int32 Port { get; set; }
|
|
|
|
|
|
2013-06-28 03:55:45 +02:00
|
|
|
|
[FieldDefinition(2, Label = "Username")]
|
2013-05-20 01:17:32 +02:00
|
|
|
|
public String Username { get; set; }
|
|
|
|
|
|
2013-06-28 03:55:45 +02:00
|
|
|
|
[FieldDefinition(3, Label = "Password")]
|
2013-05-20 01:17:32 +02:00
|
|
|
|
public String Password { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool IsValid
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return !string.IsNullOrWhiteSpace(Host);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|