You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
downkyi/DownKyi.Core/BiliApi/Models/Dimension.cs

15 lines
337 B

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