summaryrefslogtreecommitdiffstats
path: root/solve/PhotoEditor/Models/RectangleStruct.cs
blob: 9b41babebee9ae180e75d1d1a19d24ea3fd7f2f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
namespace PhotoEditor.Models;
public class RectangleStruct {
    public int X {get; set;}
    public int Y {get; set;}
    public int W {get; set;}
    public int H {get; set;}

}