Czoko_Smieciarka/Trunk/DataModels/Models/Coords.cs
Bartosz Chyzy 7511a50799 init
2019-03-13 14:19:38 +01:00

23 lines
381 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CzokoŚmieciarka.DataModels.Models
{
public class Coords
{
public Coords(int x,int y)
{
this.X = x;
this.Y = y;
}
public int X { get; set; }
public int Y { get; set; }
}
}