You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
using NzbDrone.Core.Datastore.Events;
|
|
|
|
namespace NzbDrone.SignalR
|
|
{
|
|
public class SignalRMessage
|
|
{
|
|
public object Body { get; set; }
|
|
public string Name { get; set; }
|
|
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
|
public ModelAction Action { get; set; }
|
|
}
|
|
}
|