mirror of
https://github.com/Readarr/Readarr
synced 2026-02-16 11:43:58 +01:00
13 lines
297 B
C#
13 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; }
|
|
}
|
|
}
|