Files
test_demo/MX-PD-盘古 - new/PanGu.DieBonderApp/MainShell/Models/BaseBoard/Pad.cs

21 lines
380 B
C#
Raw Normal View History

using MainShell.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MainShell.Recipe.BaseBoard.Model
{
public class Pad
{
public int Row { get; set; }
public int Column { get; set; }
public double X { get; set; }
public double Y { get; set; }
}
}