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; } } }