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.
Prowlarr/src/NzbDrone.SignalR/SignalRMessage.cs

15 lines
304 B

using System.Text.Json.Serialization;
using NzbDrone.Core.Datastore.Events;
namespace NzbDrone.SignalR
{
public class SignalRMessage
{
public object Body { get; set; }
public string Name { get; set; }
[JsonIgnore]
public ModelAction Action { get; set; }
}
}