1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-27 22:57:09 -04:00
Files
Radarr/src/NzbDrone.SignalR/SignalRMessage.cs
T

18 lines
363 B
C#

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