mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-13 16:51:29 -07:00
14 lines
256 B
C#
14 lines
256 B
C#
namespace Bloxstrap.Models.Persistable
|
|
{
|
|
public class WindowState
|
|
{
|
|
public double Width { get; set; }
|
|
|
|
public double Height { get; set; }
|
|
|
|
public double Left { get; set; }
|
|
|
|
public double Top { get; set; }
|
|
}
|
|
}
|