16 lines
413 B
C#
16 lines
413 B
C#
namespace SickBlazorApp.Models
|
|
{
|
|
public sealed class PositionPdo
|
|
{
|
|
public uint CobId { get; init; }
|
|
public int Length { get; init; } // DLC
|
|
public string DataHex { get; init; } = string.Empty; // "0B C4 CE 03 08 00 00 00"
|
|
|
|
public uint RawValue { get; init; }
|
|
|
|
public double PositionMm { get; init; }
|
|
|
|
public DateTime Timestamp { get; init; }
|
|
}
|
|
}
|