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

21 lines
402 B
C#

namespace LaaProduction.Data.Omni.Models
{
using System;
public class TestPoint
{
public Int16 Id { get; set; }
public Int32 Nr { get; set; }
public Single GPM { get; set; }
public Int16 Rotations { get; set; }
public Int16 Duration { get; set; }
public Single MinAcc { get; set; }
public Single MaxAcc { get; set; }
}
}