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/VideoStream/Models/PlayUrlDurl.cs

23 lines
611 B

using DownKyi.Core.BiliApi.Models;
using Newtonsoft.Json;
using System.Collections.Generic;
namespace DownKyi.Core.BiliApi.VideoStream.Models
{
public class PlayUrlDurl : BaseModel
{
[JsonProperty("order")]
public int Order { get; set; }
[JsonProperty("length")]
public long Length { get; set; }
[JsonProperty("size")]
public long Size { get; set; }
// ahead
// vhead
[JsonProperty("url")]
public string Url { get; set; }
[JsonProperty("backup_url")]
public List<string> BackupUrl { get; set; }
}
}