Radarr/NzbDrone.Core/Notifications/Prowl/TestProwlCommand.cs

19 lines
427 B
C#
Raw Normal View History

2013-08-28 00:51:54 +00:00
using System;
using NzbDrone.Common;
using NzbDrone.Common.Messaging;
namespace NzbDrone.Core.Notifications.Prowl
{
public class TestProwlCommand : ICommand
{
public String CommandId { get; private set; }
public string ApiKey { get; set; }
public int Priority { get; set; }
2013-08-28 00:51:54 +00:00
public TestProwlCommand()
{
CommandId = HashUtil.GenerateCommandId();
}
}
}