Skip to content
Snippets Groups Projects
Command.cs 695 B
Newer Older
  • Learn to ignore specific revisions
  • using System.Collections.ObjectModel;
    
    namespace MasterDevs.ChromeDevTools.ProtocolGenerator
    {
        class Command : ProtocolItem
        {
            public Collection<Property> Returns
            {
                get;
                set;
            }
    
            public Property Error
            {
                get;
                set;
            }
    
            public Collection<string> Handlers
            {
                get;
                set;
            }
    
            public Collection<Property> Parameters
            {
                get;
                set;
            }
    
            public bool async
            {
                get;
                set;
            }
    
            public string Redirect
            {
                get;
                set;
            }
        }
    }