Files
ahtol/daq_testing/Result.cs
Wesley Hofman ecb076ce8b First Commit
2025-08-29 18:13:03 +02:00

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()
{
}
}
}