mirror of
https://github.com/Readarr/Readarr
synced 2025-12-20 23:35:13 +01:00
13 lines
308 B
C#
13 lines
308 B
C#
using System;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Core.Messaging;
|
|
using NzbDrone.Core.Messaging.Commands;
|
|
|
|
namespace NzbDrone.Core.Notifications.Pushover
|
|
{
|
|
public class TestPushoverCommand : Command
|
|
{
|
|
public string UserKey { get; set; }
|
|
public int Priority { get; set; }
|
|
}
|
|
}
|