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