Skip to content
Snippets Groups Projects
StopCommandResponse.cs 348 B
Newer Older
  • Learn to ignore specific revisions
  • using MasterDevs.ChromeDevTools;
    using Newtonsoft.Json;
    using System.Collections.Generic;
    
    namespace MasterDevs.ChromeDevTools.Protocol.Profiler
    {
    	[CommandResponse(ProtocolName.Profiler.Stop)]
    	public class StopCommandResponse
    	{
    		/// <summary>
    		/// Gets or sets Recorded profile.
    		/// </summary>
    		public CPUProfile Profile { get; set; }
    	}
    }