mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-24 22:36:19 -04:00
16 lines
340 B
C#
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; }
|
|
}
|
|
}
|