1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-02-04 11:43:19 +02:00
Sonarr/src/NzbDrone.SignalR/SignalRMessage.cs
Qstick f50b54b3f6 New: Use System.Text.Json for Nancy and SignalR
Co-Authored-By: ta264 <ta264@users.noreply.github.com>
2022-08-07 15:24:36 -07:00

14 lines
297 B
C#

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; }
}
}