using BlazorApp.Models; namespace BlazorApp.Models.Canopen { public interface ICanopenDeviceDecoder { int NodeId { get; } string DecodeTpdo(int pdoIndex, byte[] data, byte length); } }