Files
eveo/Eve-O-Preview/Configuration/ClientLayout.cs
2018-02-03 21:09:15 +02:00

23 lines
399 B
C#

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; }
}
}