14 lines
353 B
C#
14 lines
353 B
C#
namespace SickBlazorApp.Models;
|
|
|
|
public sealed class CanFrame
|
|
{
|
|
public uint CobId { get; init; }
|
|
public int Length { get; init; }
|
|
public string DataHex { get; init; } = string.Empty;
|
|
public DateTime Timestamp { get; init; }
|
|
|
|
// Optional
|
|
public double? PositionMm { get; init; }
|
|
public string? Description { get; init; }
|
|
}
|