mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-21 22:04:31 -04:00
18 lines
363 B
C#
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; }
|
|
}
|
|
}
|