mirror of https://github.com/jellyfin/jellyfin.git
25 lines
694 B
C#
25 lines
694 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 : OutboundWebSocketMessage<UserDto>
|
|
{
|
|
/// <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;
|
|
}
|