Node_tmp.cs
363 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 double pointMap_X { get; set; }
public double pointMap_Y { get; set; }
public List<ListNodeInfo> NodeInfo_tmp = new List<ListNodeInfo>();
}
}