Skip to content
Snippets Groups Projects
Event.cs 591 B
Newer Older
  • Learn to ignore specific revisions
  • using System.Collections.ObjectModel;
    
    namespace MasterDevs.ChromeDevTools.ProtocolGenerator
    {
    
    Frederik Carlier's avatar
    Frederik Carlier committed
        public 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;
            }
        }
    }