├── .gitignore ├── BikeSharing360Bot ├── Messages │ ├── Backend │ │ ├── Bike.csx │ │ ├── BingMapHelper.csx │ │ ├── Consts.csx │ │ ├── CustomerService.csx │ │ ├── GeoLocation.csx │ │ ├── Messages.csx │ │ └── User.csx │ ├── BikeSharing360LuisDialog.csx │ ├── Messages.xproj │ ├── Messages.xproj.user │ ├── PostDialogExtensions.csx │ ├── function.json │ ├── host.json │ ├── project.json │ ├── project.lock.json │ └── run.csx ├── PostDeployScripts │ └── runGulp.cmd └── host.json ├── CustomerServiceApis ├── CustomerServiceApis.sln └── CustomerServiceApis │ ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ ├── IdentityConfig.cs │ ├── RouteConfig.cs │ ├── Startup.Auth.cs │ └── WebApiConfig.cs │ ├── ApplicationInsights.config │ ├── Areas │ └── HelpPage │ │ ├── ApiDescriptionExtensions.cs │ │ ├── App_Start │ │ └── HelpPageConfig.cs │ │ ├── Controllers │ │ └── HelpController.cs │ │ ├── HelpPage.css │ │ ├── HelpPageAreaRegistration.cs │ │ ├── HelpPageConfigurationExtensions.cs │ │ ├── ModelDescriptions │ │ ├── CollectionModelDescription.cs │ │ ├── ComplexTypeModelDescription.cs │ │ ├── DictionaryModelDescription.cs │ │ ├── EnumTypeModelDescription.cs │ │ ├── EnumValueDescription.cs │ │ ├── IModelDocumentationProvider.cs │ │ ├── KeyValuePairModelDescription.cs │ │ ├── ModelDescription.cs │ │ ├── ModelDescriptionGenerator.cs │ │ ├── ModelNameAttribute.cs │ │ ├── ModelNameHelper.cs │ │ ├── ParameterAnnotation.cs │ │ ├── ParameterDescription.cs │ │ └── SimpleTypeModelDescription.cs │ │ ├── Models │ │ └── HelpPageApiModel.cs │ │ ├── SampleGeneration │ │ ├── HelpPageSampleGenerator.cs │ │ ├── HelpPageSampleKey.cs │ │ ├── ImageSample.cs │ │ ├── InvalidSample.cs │ │ ├── ObjectGenerator.cs │ │ ├── SampleDirection.cs │ │ └── TextSample.cs │ │ ├── Views │ │ ├── Help │ │ │ ├── Api.cshtml │ │ │ ├── DisplayTemplates │ │ │ │ ├── ApiGroup.cshtml │ │ │ │ ├── CollectionModelDescription.cshtml │ │ │ │ ├── ComplexTypeModelDescription.cshtml │ │ │ │ ├── DictionaryModelDescription.cshtml │ │ │ │ ├── EnumTypeModelDescription.cshtml │ │ │ │ ├── HelpPageApiModel.cshtml │ │ │ │ ├── ImageSample.cshtml │ │ │ │ ├── InvalidSample.cshtml │ │ │ │ ├── KeyValuePairModelDescription.cshtml │ │ │ │ ├── ModelDescriptionLink.cshtml │ │ │ │ ├── Parameters.cshtml │ │ │ │ ├── Samples.cshtml │ │ │ │ ├── SimpleTypeModelDescription.cshtml │ │ │ │ └── TextSample.cshtml │ │ │ ├── Index.cshtml │ │ │ └── ResourceModel.cshtml │ │ ├── Shared │ │ │ └── _Layout.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ │ └── XmlDocumentationProvider.cs │ ├── Content │ ├── Site.css │ ├── bootstrap.css │ └── bootstrap.min.css │ ├── Controllers │ └── CustomerServiceController.cs │ ├── CustomerServiceApis.csproj │ ├── CustomerServiceApis.csproj.user │ ├── Global.asax │ ├── Global.asax.cs │ ├── Models │ ├── Bike.cs │ ├── Employee.cs │ └── IdentityModels.cs │ ├── Project_Readme.html │ ├── Properties │ └── AssemblyInfo.cs │ ├── Providers │ └── ApplicationOAuthProvider.cs │ ├── Results │ └── ChallengeResult.cs │ ├── Scripts │ ├── _references.js │ ├── ai.0.22.19-build00125.js │ ├── ai.0.22.19-build00125.min.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.10.2.intellisense.js │ ├── jquery-1.10.2.js │ ├── jquery-1.10.2.min.js │ ├── jquery-1.10.2.min.map │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ ├── modernizr-2.6.2.js │ ├── respond.js │ └── respond.min.js │ ├── Service References │ └── Application Insights │ │ └── ConnectedService.json │ ├── Startup.cs │ ├── Views │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── Web.config │ └── _ViewStart.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── favicon.ico │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff │ └── packages.config ├── LUIS └── BikeSharing360Luis.json ├── README.md ├── SECURITY.md ├── images ├── bot1.png ├── bot2.png ├── bot3.PNG └── bot4.PNG └── license.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/.gitignore -------------------------------------------------------------------------------- /BikeSharing360Bot/Messages/Backend/Bike.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/BikeSharing360Bot/Messages/Backend/Bike.csx -------------------------------------------------------------------------------- /BikeSharing360Bot/Messages/Backend/BingMapHelper.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/BikeSharing360Bot/Messages/Backend/BingMapHelper.csx -------------------------------------------------------------------------------- /BikeSharing360Bot/Messages/Backend/Consts.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/BikeSharing360Bot/Messages/Backend/Consts.csx -------------------------------------------------------------------------------- /BikeSharing360Bot/Messages/Backend/CustomerService.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/BikeSharing360Bot/Messages/Backend/CustomerService.csx -------------------------------------------------------------------------------- /BikeSharing360Bot/Messages/Backend/GeoLocation.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/BikeSharing360Bot/Messages/Backend/GeoLocation.csx -------------------------------------------------------------------------------- /BikeSharing360Bot/Messages/Backend/Messages.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/BikeSharing360Bot/Messages/Backend/Messages.csx -------------------------------------------------------------------------------- /BikeSharing360Bot/Messages/Backend/User.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/BikeSharing360Bot/Messages/Backend/User.csx -------------------------------------------------------------------------------- /BikeSharing360Bot/Messages/BikeSharing360LuisDialog.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/BikeSharing360Bot/Messages/BikeSharing360LuisDialog.csx -------------------------------------------------------------------------------- /BikeSharing360Bot/Messages/Messages.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/BikeSharing360Bot/Messages/Messages.xproj -------------------------------------------------------------------------------- /BikeSharing360Bot/Messages/Messages.xproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/BikeSharing360Bot/Messages/Messages.xproj.user -------------------------------------------------------------------------------- /BikeSharing360Bot/Messages/PostDialogExtensions.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/BikeSharing360Bot/Messages/PostDialogExtensions.csx -------------------------------------------------------------------------------- /BikeSharing360Bot/Messages/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/BikeSharing360Bot/Messages/function.json -------------------------------------------------------------------------------- /BikeSharing360Bot/Messages/host.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /BikeSharing360Bot/Messages/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/BikeSharing360Bot/Messages/project.json -------------------------------------------------------------------------------- /BikeSharing360Bot/Messages/project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/BikeSharing360Bot/Messages/project.lock.json -------------------------------------------------------------------------------- /BikeSharing360Bot/Messages/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/BikeSharing360Bot/Messages/run.csx -------------------------------------------------------------------------------- /BikeSharing360Bot/PostDeployScripts/runGulp.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/BikeSharing360Bot/PostDeployScripts/runGulp.cmd -------------------------------------------------------------------------------- /BikeSharing360Bot/host.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis.sln -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/App_Start/IdentityConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/App_Start/IdentityConfig.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/App_Start/Startup.Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/App_Start/Startup.Auth.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/ApplicationInsights.config -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ApiDescriptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ApiDescriptionExtensions.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/App_Start/HelpPageConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/App_Start/HelpPageConfig.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Controllers/HelpController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Controllers/HelpController.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/HelpPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/HelpPage.css -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/HelpPageAreaRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/HelpPageAreaRegistration.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/HelpPageConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/HelpPageConfigurationExtensions.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ModelDescriptions/CollectionModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ModelDescriptions/CollectionModelDescription.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ModelDescriptions/ComplexTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ModelDescriptions/ComplexTypeModelDescription.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ModelDescriptions/EnumTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ModelDescriptions/EnumTypeModelDescription.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ModelDescriptions/KeyValuePairModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ModelDescriptions/KeyValuePairModelDescription.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ModelDescriptions/ModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ModelDescriptions/ModelDescription.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ModelDescriptions/ModelDescriptionGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ModelDescriptions/ModelDescriptionGenerator.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ModelDescriptions/ModelNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ModelDescriptions/ModelNameAttribute.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ModelDescriptions/ModelNameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ModelDescriptions/ModelNameHelper.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ModelDescriptions/SimpleTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/ModelDescriptions/SimpleTypeModelDescription.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Models/HelpPageApiModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Models/HelpPageApiModel.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/SampleGeneration/HelpPageSampleGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/SampleGeneration/HelpPageSampleGenerator.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/SampleGeneration/HelpPageSampleKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/SampleGeneration/HelpPageSampleKey.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/SampleGeneration/ImageSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/SampleGeneration/ImageSample.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/SampleGeneration/InvalidSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/SampleGeneration/InvalidSample.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/SampleGeneration/ObjectGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/SampleGeneration/ObjectGenerator.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/SampleGeneration/SampleDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/SampleGeneration/SampleDirection.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/SampleGeneration/TextSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/SampleGeneration/TextSample.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/Api.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/Api.cshtml -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/Index.cshtml -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/ResourceModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Help/ResourceModel.cshtml -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/Web.config -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/XmlDocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Areas/HelpPage/XmlDocumentationProvider.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Content/Site.css -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Content/bootstrap.css -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Content/bootstrap.min.css -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Controllers/CustomerServiceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Controllers/CustomerServiceController.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/CustomerServiceApis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/CustomerServiceApis.csproj -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/CustomerServiceApis.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/CustomerServiceApis.csproj.user -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Global.asax -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Global.asax.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Models/Bike.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Models/Bike.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Models/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Models/Employee.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Models/IdentityModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Models/IdentityModels.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Project_Readme.html -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Providers/ApplicationOAuthProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Providers/ApplicationOAuthProvider.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Results/ChallengeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Results/ChallengeResult.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Scripts/_references.js -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Scripts/ai.0.22.19-build00125.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Scripts/ai.0.22.19-build00125.js -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Scripts/ai.0.22.19-build00125.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Scripts/ai.0.22.19-build00125.min.js -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Scripts/bootstrap.js -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Scripts/respond.js -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Scripts/respond.min.js -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Service References/Application Insights/ConnectedService.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Service References/Application Insights/ConnectedService.json -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Startup.cs -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Views/Web.config -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Web.Debug.config -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Web.Release.config -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/Web.config -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/favicon.ico -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /CustomerServiceApis/CustomerServiceApis/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/CustomerServiceApis/CustomerServiceApis/packages.config -------------------------------------------------------------------------------- /LUIS/BikeSharing360Luis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/LUIS/BikeSharing360Luis.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/SECURITY.md -------------------------------------------------------------------------------- /images/bot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/images/bot1.png -------------------------------------------------------------------------------- /images/bot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/images/bot2.png -------------------------------------------------------------------------------- /images/bot3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/images/bot3.PNG -------------------------------------------------------------------------------- /images/bot4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/images/bot4.PNG -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/BikeSharing360_BotApps/HEAD/license.txt --------------------------------------------------------------------------------