2022-09-08 08:04:32 -07:00

14 lines
244 B
C#

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