Newer
Older
using Newtonsoft.Json.Linq;
Bjoern Esswein
committed
namespace bessw.Unity.WebView.ChromeDevTools.Protocol
Bjoern Esswein
committed
public class DevtoolsResponseWrapper
Bjoern Esswein
committed
public long Id { get; set; }
public JObject Result { get; set; }
}
///
/// Every devtools command response has the same id and a method as the corresponding command
///
public class DevtoolsResponseWrapper<T> : DevtoolsResponseWrapper where T : IDevtoolsResponse
{
public new T Result { get; set; }
Bjoern Esswein
committed
public interface IDevtoolsResponse { }
}