1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00

31 lines
712 B
C#
Raw Normal View History

2013-05-19 16:17:32 -07:00
using System;
using NzbDrone.Core.Annotations;
namespace NzbDrone.Core.Notifications.Growl
{
public class GrowlSettings : INotifcationSettings
{
2013-08-08 23:22:26 -07:00
public GrowlSettings()
{
Port = 23053;
}
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-27 18:55:45 -07:00
[FieldDefinition(1, Label = "Port")]
2013-05-19 16:17:32 -07:00
public Int32 Port { get; set; }
2013-06-27 18:55:45 -07:00
[FieldDefinition(2, Label = "Password")]
2013-05-19 16:17:32 -07:00
public String Password { get; set; }
public bool IsValid
{
get
{
return !string.IsNullOrWhiteSpace(Host) && !string.IsNullOrWhiteSpace(Password) && Port > 0;
}
}
}
}