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

14 lines
288 B

using Newtonsoft.Json;
using NzbDrone.Core.Datastore.Events;
11 years ago
namespace NzbDrone.SignalR
{
public class SignalRMessage
{
public object Body { get; set; }
public string Name { get; set; }
[JsonIgnore]
public ModelAction Action { get; set; }
11 years ago
}
}