using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.Web { public enum DeploymentSlot { [Description("Development")] [DeploymentSlotAddress("https://machineservice-dev.twine-srv.com")] DEV, [Description("Testing")] [DeploymentSlotAddress("https://machineservice-test.twine-srv.com")] TEST, [Description("Process")] [DeploymentSlotAddress("https://machineservice-process.twine-srv.com")] PROCESS, [Description("Alpha")] [DeploymentSlotAddress("https://machineservice-alpha.twine-srv.com")] ALPHA, [Description("Beta")] [DeploymentSlotAddress("https://machineservice-beta.twine-srv.com")] BETA, [Description("Staging")] [DeploymentSlotAddress("https://machineservice-stage.twine-srv.com")] STAGE, [Description("Production")] [DeploymentSlotAddress("https://machineservice.twine-srv.com")] PROD, [Description("BB")] [DeploymentSlotAddress("https://machineservice-machineservice-bb.azurewebsites.net")] BB } }