Skip to content
Snippets Groups Projects
RemoveAttributeCommandResponse.cs 349 B
Newer Older
  • Learn to ignore specific revisions
  • using MasterDevs.ChromeDevTools;
    using Newtonsoft.Json;
    using System.Collections.Generic;
    
    namespace MasterDevs.ChromeDevTools.Protocol.DOM
    {
    	/// <summary>
    	/// Removes attribute with given name from an element with given id.
    	/// </summary>
    	[CommandResponse(ProtocolName.DOM.RemoveAttribute)]
    	public class RemoveAttributeCommandResponse
    	{
    	}
    }