Church.Net.API/LineMessaging/MessageData/LineAreaBoundsObject.cs
2022-09-08 08:04:32 -07:00

20 lines
372 B
C#

using Newtonsoft.Json;
namespace LineMessaging
{
public class LineAreaBounds
{
[JsonProperty("x")]
public int X { get; set; }
[JsonProperty("y")]
public int Y { get; set; }
[JsonProperty("width")]
public int Width { get; set; }
[JsonProperty("height")]
public int Height { get; set; }
}
}