CTUWayPoint.cs
340 字节
using CtuDeviceLib;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TheMachine.Model
{
public class CTUWayPoint
{
public uint CTUID { get; set; }
public uint PointCode { get; set; }
public DateTime Time { get; set; }
}
}