Files
downkyicore/DownKyi.Core/BiliApi/Models/Dimension.cs
2023-11-25 21:59:48 +08:00

10 lines
286 B
C#

using Newtonsoft.Json;
namespace DownKyi.Core.BiliApi.Models;
public class Dimension : BaseModel
{
[JsonProperty("width")] public int Width { get; set; }
[JsonProperty("height")] public int Height { get; set; }
[JsonProperty("rotate")] public int Rotate { get; set; }
}