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/Video/Models/UgcSection.cs

21 lines
574 B

using DownKyi.Core.BiliApi.Models;
using Newtonsoft.Json;
using System.Collections.Generic;
namespace DownKyi.Core.BiliApi.Video.Models
{
public class UgcSection : BaseModel
{
[JsonProperty("season_id")]
public long SeasonId { get; set; }
[JsonProperty("id")]
public long Id { get; set; }
[JsonProperty("title")]
public string Title { get; set; }
[JsonProperty("type")]
public int Type { get; set; }
[JsonProperty("episodes")]
public List<UgcEpisode> Episodes { get; set; }
}
}