Update layout management system to use JSON

This commit is contained in:
Anton Kasyanov
2016-06-05 01:34:44 +03:00
parent a30834db6c
commit 4949c17065
11 changed files with 162 additions and 352 deletions

View File

@@ -0,0 +1,11 @@
namespace EveOPreview.Configuration
{
public class ClientLayout
{
public int X { get; set; }
public int Y { get; set; }
public int Width { get; set; }
public int Height { get; set; }
}
}