2013-08-27 17:51:54 -07:00
|
|
|
using System;
|
|
|
|
using NzbDrone.Common;
|
2013-09-10 23:33:47 -07:00
|
|
|
using NzbDrone.Core.Messaging;
|
|
|
|
using NzbDrone.Core.Messaging.Commands;
|
2013-06-12 23:41:26 -07:00
|
|
|
|
|
|
|
namespace NzbDrone.Core.Notifications.Growl
|
|
|
|
{
|
2013-09-10 23:33:47 -07:00
|
|
|
public class TestGrowlCommand : Command
|
2013-06-12 23:41:26 -07:00
|
|
|
{
|
2013-09-11 17:42:15 -07:00
|
|
|
public override bool SendUpdatesToClient
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2013-06-12 23:41:26 -07:00
|
|
|
public string Host { get; set; }
|
|
|
|
public int Port { get; set; }
|
|
|
|
public string Password { get; set; }
|
|
|
|
}
|
|
|
|
}
|