forked from sim0n00ps/OF-DL
15 lines
336 B
C#
15 lines
336 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace OF_DL.Models.Dtos.Common;
|
|
|
|
public class PreviewDto
|
|
{
|
|
[JsonProperty("width")] public int? Width { get; set; }
|
|
|
|
[JsonProperty("height")] public int? Height { get; set; }
|
|
|
|
[JsonProperty("size")] public int? Size { get; set; }
|
|
|
|
[JsonProperty("url")] public string Url { get; set; } = "";
|
|
}
|