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