mirror of
https://github.com/Radarr/Radarr
synced 2025-01-01 04:45:35 +00:00
18 lines
429 B
C#
18 lines
429 B
C#
using System;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Common.Messaging;
|
|
|
|
namespace NzbDrone.Core.Notifications.Pushover
|
|
{
|
|
public class TestPushoverCommand : ICommand
|
|
{
|
|
public String CommandId { get; set; }
|
|
public string UserKey { get; set; }
|
|
public int Priority { get; set; }
|
|
|
|
public TestPushoverCommand()
|
|
{
|
|
CommandId = HashUtil.GenerateCommandId();
|
|
}
|
|
}
|
|
}
|