using System.ComponentModel;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Session;
namespace MediaBrowser.Controller.Net.WebSocketMessages.Outbound;
/// 
/// Library changed message.
/// 
public class LibraryChangedMessage : OutboundWebSocketMessage
{
    /// 
    /// Initializes a new instance of the  class.
    /// 
    /// The library update info.
    public LibraryChangedMessage(LibraryUpdateInfo data)
        : base(data)
    {
    }
    /// 
    [DefaultValue(SessionMessageType.LibraryChanged)]
    public override SessionMessageType MessageType => SessionMessageType.LibraryChanged;
}