laatzen/LaaProductionWeb/Data/LaaProduction.Data.Omni/Models/TestedPoint.cs
2024-07-17 13:13:41 +02:00

28 lines
528 B
C#

namespace LaaProduction.Data.Omni.Models
{
using System;
public class TestedPoint
{
public Int32 RunId { get; set; }
public String Pcb { get; set; }
public Int32 Id { get; set; }
public Int32 Nr{ get; set; }
public Int32 Rotations { get; set; }
public Double Duration { get; set; }
public Double M3S { get; set; }
public Double M3SRef { get; set; }
public Double ACC { get; set; }
public String Debug { get; set; }
}
}