9 lines
221 B
C#
9 lines
221 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace ACBuildService;
|
|
|
|
public class ResponseData<T>
|
|
{
|
|
[JsonPropertyName("code")] public int Code { get; set; }
|
|
[JsonPropertyName("data")] public T Data { get; set; }
|
|
} |