11 lines
213 B
C#
11 lines
213 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace OF_DL.Models.Dtos.Common;
|
|
|
|
public class HeaderSizeDto
|
|
{
|
|
[JsonProperty("width")] public int Width { get; set; }
|
|
|
|
[JsonProperty("height")] public int Height { get; set; }
|
|
}
|