14 lines
400 B
C#
14 lines
400 B
C#
namespace BlazorApp.Models.Canopen.Eds
|
|
{
|
|
public class EdsObject
|
|
{
|
|
public ushort Index { get; set; }
|
|
public byte SubIndex { get; set; }
|
|
public string Name { get; set; } = "";
|
|
public double Factor { get; set; } = 1.0;
|
|
public string Unit { get; set; } = "";
|
|
public int BitOffset { get; set; }
|
|
public int BitLength { get; set; }
|
|
}
|
|
}
|