项目初次提交

This commit is contained in:
YOHO\20373
2025-06-27 11:51:40 +08:00
commit fb9891168a
106 changed files with 3404 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 ApiResponse
{
public int code { get; set; }
public List<AppCheck> data { get; set; }
public string msg { get; set; }
}
}