aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Excel/ThreadCharacteristicsExelModel.cs
blob: 1f894d70b50fbf6683435bfc1012e7460c95b7ee (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
31
32
33
34
35
36
37
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.MachineStudio.ThreadExtensions.Models
{
    public class ThreadCharacteristicsExcelModel
    {
        public String ThreadName { get; set; }
        public String Manufacturer { get; set; }
        public String Brand { get; set; }
        public String Country { get; set; }
        public String EndUse { get; set; }
        public String Applications { get; set; }
        public String IndustrySector { get; set; }
        public String Material { get; set; }
        public String Type { get; set; }
        public String SubFamily  { get; set; }
        public String Family { get; set; }
        public String Group { get; set; }
        public String Texturing { get; set; }
        public String Geometry { get; set; }
        public String Color { get; set; }
        public String GlossLevel { get; set; }
        public double LinearDensity  { get; set; }
        public String Unit { get; set; }
        public int Plies { get; set; }
        public int FilamentCountPerPlie  { get; set; }
        public int LinearDensityCount { get; set; }
        public int CountDen { get; set; }
        public String FiberCount  { get; set; }
        public int Twist { get; set; }
        public String TwistDirection { get; set; }
    }
}