mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-11-29 17:54:59 -05:00
* Add all websocket messages to generated openapi spec * Use oneOf * JsonIgnore ServerId * Oops * Add discriminators * Add WebSocketMessage container for Inbound and Outbound messages
26 lines
894 B
C#
26 lines
894 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using MediaBrowser.Model.Activity;
|
|
using MediaBrowser.Model.Session;
|
|
|
|
namespace MediaBrowser.Controller.Net.WebSocketMessages.Inbound;
|
|
|
|
/// <summary>
|
|
/// Activity log entry start message.
|
|
/// </summary>
|
|
public class ActivityLogEntryStartMessage : WebSocketMessage<IReadOnlyCollection<ActivityLogEntry>>, IInboundWebSocketMessage
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ActivityLogEntryStartMessage"/> class.
|
|
/// </summary>
|
|
/// <param name="data">Collection of activity log entries.</param>
|
|
public ActivityLogEntryStartMessage(IReadOnlyCollection<ActivityLogEntry> data)
|
|
: base(data)
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
[DefaultValue(SessionMessageType.ActivityLogEntryStart)]
|
|
public override SessionMessageType MessageType => SessionMessageType.ActivityLogEntryStart;
|
|
}
|