using System.Collections.Generic;
using System.ComponentModel;
using MediaBrowser.Model.Session;
namespace MediaBrowser.Controller.Net.WebSocketMessages.Outbound;
/// 
/// 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;
}