Skip to content
Snippets Groups Projects
SetStyleSheetTextCommandResponse.cs 573 B
Newer Older
using System.Collections.Generic;

namespace MasterDevs.ChromeDevTools.Protocol.Chrome.CSS
{
	/// <summary>
	/// Sets the new stylesheet text.
	/// </summary>
	[CommandResponse(ProtocolName.CSS.SetStyleSheetText)]
	public class SetStyleSheetTextCommandResponse
	{
		/// <summary>
		/// Gets or sets URL of source map associated with script (if any).
		/// </summary>
svatal's avatar
svatal committed
		[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
		public string SourceMapURL { get; set; }