21 lines
380 B
C#
21 lines
380 B
C#
|
|
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; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|