sonarr-repo-only/NzbDrone.Core/Notifications/Growl/GrowlSettings.cs

38 lines
888 B
C#
Raw Normal View History

2013-05-19 23:17:32 +00:00
using System;
using FluentValidation.Results;
2013-05-19 23:17:32 +00:00
using NzbDrone.Core.Annotations;
using NzbDrone.Core.ThingiProvider;
2013-05-19 23:17:32 +00:00
namespace NzbDrone.Core.Notifications.Growl
{
public class GrowlSettings : IProviderConfig
2013-05-19 23:17:32 +00:00
{
2013-08-09 06:22:26 +00:00
public GrowlSettings()
{
Port = 23053;
}
2013-06-28 01:55:45 +00:00
[FieldDefinition(0, Label = "Host")]
2013-05-19 23:17:32 +00:00
public String Host { get; set; }
2013-06-28 01:55:45 +00:00
[FieldDefinition(1, Label = "Port")]
2013-05-19 23:17:32 +00:00
public Int32 Port { get; set; }
2013-06-28 01:55:45 +00:00
[FieldDefinition(2, Label = "Password")]
2013-05-19 23:17:32 +00:00
public String Password { get; set; }
public bool IsValid
{
get
{
return !string.IsNullOrWhiteSpace(Host) && !string.IsNullOrWhiteSpace(Password) && Port > 0;
}
}
public ValidationResult Validate()
{
throw new NotImplementedException();
}
2013-05-19 23:17:32 +00:00
}
}