mirror of
https://github.com/yaobiao131/downkyicore.git
synced 2025-08-10 00:52:31 +00:00
10 lines
286 B
C#
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; }
|
|
} |