Skip to content
Snippets Groups Projects
EnableRequest.cs 373 B
Newer Older
  • Learn to ignore specific revisions
  • using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    
    namespace AutoWebPerf.Chrome.Messages.Network
    {
        [MethodName(MethodName.Network.Enable)]
        public class EnableRequest : Messages.Request
        {
            public EnableRequest(long id)
                : base(id)
            {                
            }
        }
    }