Code reorganization

This commit is contained in:
Anton Kasyanov
2018-04-03 23:50:27 +03:00
parent 36cf3f421e
commit c9121873b5
8 changed files with 9 additions and 9 deletions

View File

@@ -0,0 +1,23 @@
namespace EveOPreview.Configuration
{
public class ClientLayout
{
public ClientLayout()
{
}
public ClientLayout(int x, int y, int width, int height)
{
this.X = x;
this.Y = y;
this.Width = width;
this.Height = height;
}
public int X { get; set; }
public int Y { get; set; }
public int Width { get; set; }
public int Height { get; set; }
}
}