mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-15 19:22:19 +08:00
14 lines
273 B
C#
14 lines
273 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace BililiveRecorder.Core.Api
|
|
{
|
|
internal class BilibiliApiResponse<T> where T : class
|
|
{
|
|
[JsonProperty("code")]
|
|
public int? Code { get; set; }
|
|
|
|
[JsonProperty("data")]
|
|
public T? Data { get; set; }
|
|
}
|
|
}
|