21 lines
402 B
C#
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; }
|
|
}
|
|
} |