14 lines
244 B
C#
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; }
|
|
}
|
|
}
|