mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-02-04 11:43:19 +02:00
f50b54b3f6
Co-Authored-By: ta264 <ta264@users.noreply.github.com>
14 lines
297 B
C#
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; }
|
|
}
|
|
}
|