//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
#pragma warning disable CS1591
using System;
using System.Collections.Generic;
using System.Text.Json.Serialization;
namespace MediaBrowser.Model.Session;
public class GeneralCommand
{
public GeneralCommand()
: this(new Dictionary())
{
}
[JsonConstructor]
public GeneralCommand(Dictionary? arguments)
{
Arguments = arguments ?? new Dictionary();
}
public GeneralCommandType Name { get; set; }
public Guid ControllingUserId { get; set; }
public Dictionary Arguments { get; }
}