【修改】带数据库参数运行judgement

This commit is contained in:
huababa1
2025-10-20 02:42:06 +08:00
parent 54254d4375
commit b740609f4a
2 changed files with 83 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Applications
{
public class ApiWhiteResponse
{
public int code { get; set; }
public List<String> data { get; set; }
public string msg { get; set; }
}
}