using System; namespace MonoDevelop.ConnectedServices { /// /// Defines the commands for Connected Services /// public enum Commands { /// /// Opens the services gallery tab /// OpenServicesGallery, OpenServicesGalleryFromServicesNode, /// /// Opens the service details tab for the given service /// OpenServiceDetails, /// /// Removes the selected service from the project /// RemoveService, /// /// Used to send telemetry /// AddServiceTelemetry } }