blob: 678038c59449587024df547c4b1e4e27ea44fcec (
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.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.DispenserAnalyzer.UI.ExcelModel
{
public class ExcelDataModel
{
public int No___of_test { get; set; }
public String DISPENSER { get; set; }
public int iteration { get; set; }
public String Location { get; set; }
public String DATE { get; set; }
public String PBU___sec__First_cycle { get; set; }
public String Average_Value { get; set; }
public String Max_Error { get; set; }
public String Error__mBr { get; set; }
public String Trend { get; set; }
public String PBU___sec__Second_cycle { get; set; }
public String AverageValue2 { get; set; }
public String MaxError2 { get; set; }
public String Error2 { get; set; }
public String Trend2 { get; set; }
public String Test_result { get; set; }
public String Last_Action { get; set; }
public String Eng_Recommendations { get; set; }
}
}
|