From 2ed4605a2cbdee74a527eaee3831b1aa3afcb400 Mon Sep 17 00:00:00 2001 From: xRain Date: Tue, 23 Jun 2026 17:47:42 +0800 Subject: [PATCH] =?UTF-8?q?PageResponse=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Communications/SimApiBaseResponse.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Communications/SimApiBaseResponse.cs b/Communications/SimApiBaseResponse.cs index 0e6f073..3837600 100644 --- a/Communications/SimApiBaseResponse.cs +++ b/Communications/SimApiBaseResponse.cs @@ -51,7 +51,7 @@ public class SimApiBaseResponse(int code = 200, string message = "成功") /// public class PageResponse { - public T? List { get; set; } + public T[] List { get; set; } = []; public int Page { get; set; } = 1; public int Count { get; set; } = 20; public int Total { get; set; }