Skip to content
Snippets Groups Projects
Select Git revision
  • 927f3451fc1c0dd8847d5d503a876bbb964f70f6
  • main default
  • master
  • tempAndrToMaster
4 results

IngameUI_OnOff_TouchControlMode.cs

Blame
  • RequestDataCommandResponse.cs 625 B
    using MasterDevs.ChromeDevTools;
    using Newtonsoft.Json;
    using System.Collections.Generic;
    
    namespace MasterDevs.ChromeDevTools.Protocol.IndexedDB
    {
    	/// <summary>
    	/// Requests data from object store or index.
    	/// </summary>
    	[CommandResponse(ProtocolName.IndexedDB.RequestData)]
    	public class RequestDataCommandResponse
    	{
    		/// <summary>
    		/// Gets or sets Array of object store data entries.
    		/// </summary>
    		public DataEntry[] ObjectStoreDataEntries { get; set; }
    		/// <summary>
    		/// Gets or sets If true, there are more entries to fetch in the given range.
    		/// </summary>
    		public bool HasMore { get; set; }
    	}
    }