mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
5ba347cf46
polly 弹幕xml 托盘图标
14 lines
271 B
C#
14 lines
271 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace BililiveRecorder.Core.Api
|
|
{
|
|
public class BilibiliApiResponse<T> where T : class
|
|
{
|
|
[JsonProperty("code")]
|
|
public int? Code { get; set; }
|
|
|
|
[JsonProperty("data")]
|
|
public T? Data { get; set; }
|
|
}
|
|
}
|