18 lines
320 B
C#
18 lines
320 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Assets.Scripts.Devices.Ant
|
|
{
|
|
public class ANTMessage
|
|
{
|
|
public byte Id { get; set; }
|
|
|
|
public byte Size { get; set; }
|
|
|
|
public byte[] Data { get; set; }
|
|
}
|
|
}
|