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