/**
 * Interface for route info
 */
export interface IRouteInfo {
    verb: string
    , url: string
    , controllerName: string
    , status: string
    , protected: boolean
    , cors: boolean
}
