Files
pengchen-exam-java-applicat…/Applications/ApiWhiteResponse.cs

16 lines
318 B
C#
Raw Normal View History

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