aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/DeploymentSlots.cs
blob: b2bfabd54f597950cb11a3479fc83c4ea9478a56 (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.MachineStudio.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
    }
}