aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Web/Tango.MachineService.Gateway/DB/ENVIRONMENT.cs
blob: 7ab5bddbc1d9503777d140295b22ac2998df5781 (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
29
30
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Web;

namespace Tango.MachineService.Gateway.DB
{
    [Table("ENVIRONMENTS")]
    public class Environment
    {
        [Column("ID")]
        public int ID { get; set; }

        [Column("NAME")]
        public String Name { get; set; }

        [Column("DESCRIPTION")]
        public String Description { get; set; }

        [Column("MACHINE_SERVICE_ADDRESS")]
        public String MachineServiceAddress { get; set; }

        [Column("DISPLAY_INDEX")]
        public int DisplayIndex { get; set; }

        [Column("ACTIVE")]
        public bool Active { get; set; }
    }
}