aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Web/Tango.MachineService.Gateway/DB/ENVIRONMENT.cs
blob: 66cd2ff0c0858ed22b93b3a477285954861ff469 (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
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; }
    }
}