2
0
forked from sim0n00ps/OF-DL
OF-DL/OF DL.Core/Models/Dtos/Common/HeaderThumbsDto.cs

11 lines
227 B
C#

using Newtonsoft.Json;
namespace OF_DL.Models.Dtos.Common;
public class HeaderThumbsDto
{
[JsonProperty("w480")] public string W480 { get; set; } = "";
[JsonProperty("w760")] public string W760 { get; set; } = "";
}