// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace MediaBrowser.Controller.Net.WebSocketMessages.Outbound; using System.Collections.Generic; using System.ComponentModel; using MediaBrowser.Model.Session; /// /// Refresh progress message. /// public class RefreshProgressMessage : OutboundWebSocketMessage> { /// /// Initializes a new instance of the class. /// /// Refresh progress data. public RefreshProgressMessage(Dictionary data) : base(data) { } /// [DefaultValue(SessionMessageType.RefreshProgress)] public override SessionMessageType MessageType => SessionMessageType.RefreshProgress; }