First Commit
This commit is contained in:
32
daq_testing/Result.cs
Normal file
32
daq_testing/Result.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace daq_testing
|
||||
{
|
||||
public class Result
|
||||
{
|
||||
public int ID { get; set; }
|
||||
public DateTime TimeStamp { get; set; }
|
||||
public int PsLine { get; set; }
|
||||
public string Description { get; set; }
|
||||
public int Position { get; set; }
|
||||
public double Value { get; set; }
|
||||
public string MeasureLocation { get; set; }
|
||||
|
||||
public string DriverID { get; set; }
|
||||
public int BiB { get; set; }
|
||||
|
||||
public Result()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user