9a0dfc00f1
* Add all websocket messages to generated openapi spec * Use oneOf * JsonIgnore ServerId * Oops * Add discriminators * Add WebSocketMessage container for Inbound and Outbound messages
25 lines
713 B
C#
25 lines
713 B
C#
using System.ComponentModel;
|
|
using MediaBrowser.Model.Dto;
|
|
using MediaBrowser.Model.Session;
|
|
|
|
namespace MediaBrowser.Controller.Net.WebSocketMessages.Outbound;
|
|
|
|
/// <summary>
|
|
/// User updated message.
|
|
/// </summary>
|
|
public class UserUpdatedMessage : WebSocketMessage<UserDto>, IOutboundWebSocketMessage
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="UserUpdatedMessage"/> class.
|
|
/// </summary>
|
|
/// <param name="data">The user dto.</param>
|
|
public UserUpdatedMessage(UserDto data)
|
|
: base(data)
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
[DefaultValue(SessionMessageType.UserUpdated)]
|
|
public override SessionMessageType MessageType => SessionMessageType.UserUpdated;
|
|
}
|