Skip to content
Snippets Groups Projects
RemoveBreakpointCommandResponse.cs 327 B
Newer Older
  • Learn to ignore specific revisions
  • using MasterDevs.ChromeDevTools;
    using Newtonsoft.Json;
    using System.Collections.Generic;
    
    namespace MasterDevs.ChromeDevTools.Protocol.Debugger
    {
    	/// <summary>
    	/// Removes JavaScript breakpoint.
    	/// </summary>
    	[CommandResponse(ProtocolName.Debugger.RemoveBreakpoint)]
    	public class RemoveBreakpointCommandResponse
    	{
    	}
    }