123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PixiEditorDotNetCore3.Models
- {
- public class Coordinates
- {
- private int _X;
- public int X
- {
- get { return _X; }
- set { _X = value; }
- }
- private int _Y;
- public int Y
- {
- get { return _Y; }
- set { _Y = value; }
- }
- public Coordinates()
- {
- }
- public Coordinates(int x, int y)
- {
- X = x;
- Y = y;
- }
- }
- }
|