blob: 857f1e5ba342e029836b4aff39570f3da10fc9ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.MachineStudio.Common
{
public enum DeploymentSlots
{
[Description("https://machineservice-dev.twine-srv.com")]
Development,
[Description("https://machineservice-test.twine-srv.com")]
Testing,
[Description("https://machineservice-stage.twine-srv.com")]
Staging,
[Description("https://machineservice.twine-srv.com")]
Production
}
}
|