mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-15 15:19:57 +00:00
6d260a927d
* Improve build component UX * Make builds show pop-up
10 lines
235 B
C#
10 lines
235 B
C#
namespace Daybreak.Shared.Models;
|
|
|
|
public sealed class ClientBoundingRect
|
|
{
|
|
public double Top { get; init; }
|
|
public double Left { get; init; }
|
|
public double Width { get; init; }
|
|
public double Height { get; init; }
|
|
}
|