Files
pengchen-exam-java-applicat…/Applications/ApiResponse.cs
2025-06-27 11:51:40 +08:00

16 lines
315 B
C#

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; }
}
}