You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
767 B
25 lines
767 B
1 year ago
|
using System.ComponentModel;
|
||
|
using MediaBrowser.Model.Entities;
|
||
|
using MediaBrowser.Model.Session;
|
||
|
|
||
|
namespace MediaBrowser.Controller.Net.WebSocketMessages.Outbound;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Library changed message.
|
||
|
/// </summary>
|
||
|
public class LibraryChangedMessage : WebSocketMessage<LibraryUpdateInfo>, IOutboundWebSocketMessage
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Initializes a new instance of the <see cref="LibraryChangedMessage"/> class.
|
||
|
/// </summary>
|
||
|
/// <param name="data">The library update info.</param>
|
||
|
public LibraryChangedMessage(LibraryUpdateInfo data)
|
||
|
: base(data)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/// <inheritdoc />
|
||
|
[DefaultValue(SessionMessageType.LibraryChanged)]
|
||
|
public override SessionMessageType MessageType => SessionMessageType.LibraryChanged;
|
||
|
}
|