33 lines
665 B
C#
33 lines
665 B
C#
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()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|