1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-24 22:36:19 -04:00
Files
Sonarr/src/NzbDrone.SignalR/SignalRMessage.cs
T
2025-09-01 15:08:19 -07:00

16 lines
340 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; }
public int? Version { get; set; }
}
}