aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.CodeGeneration/RangeDescriptionModel.cs
blob: 4600460b73982e8e2018bbe0ef4e63a63e732feb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.CodeGeneration
{
    public class RangeDescriptionModel
    {
        public String Description { get; set; }
        public double Min { get; set; }
        public double Max { get; set; }
    }
}