blob: 6531adb64ae66e3f9b9ffd2fe9afe98ca252bb0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
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("Staging")]
[DeploymentSlotAddress("https://machineservice-stage.twine-srv.com")]
STAGE,
[Description("Production")]
[DeploymentSlotAddress("https://machineservice.twine-srv.com")]
PROD
}
}
|