mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
14 lines
268 B
C#
14 lines
268 B
C#
namespace Bloxstrap.Models
|
|
{
|
|
public class WindowState
|
|
{
|
|
public double Width { get; set; }
|
|
|
|
public double Height { get; set; }
|
|
|
|
public double Left { get; set; }
|
|
|
|
public double Top { get; set; }
|
|
}
|
|
}
|