20 lines
372 B
C#
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; }
|
|
}
|
|
}
|