Skip to content
Snippets Groups Projects
Event.cs 412 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 MasterDevs.ChromeDevTools
    
    {
        public interface IEvent
        {
            string Method { get; set; }
        }
        public class Event : IEvent
        {
            public string Method { get; set; }
        }
        public class Event<T> : Event
        {
            public T Params { get; set; }
        }
        
    }