Node_tmp.cs
409 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RoboforkApp.DataModel
{
public class Node_tmp
{
public string timeStamp { get; set; }
public double pointMap_X { get; set; }
public double pointMap_Y { get; set; }
public List<ListNodeInfo> NodeInfo_tmp = new List<ListNodeInfo>();
}
}