Skip to content
Snippets Groups Projects
Event.cs 584 B
Newer Older
  • Learn to ignore specific revisions
  • using System.Collections.ObjectModel;
    
    namespace MasterDevs.ChromeDevTools.ProtocolGenerator
    {
        class Event : ProtocolItem
        {
    
            public Event()
            {
                this.Parameters = new Collection<Property>();
                this.Handlers = new Collection<string>();
            }
    
    
            public Collection<Property> Parameters
            {
                get;
                set;
            }
    
            public Collection<string> Handlers
            {
                get;
                set;
            }
    
            public bool Deprecated
            {
                get;
                set;
            }
        }
    }