NewGaoKaoApi/New_College.Model/ViewModels/TestRestSharpPostDto.cs

12 lines
259 B
C#

namespace New_College.Model.ViewModels
{
/// <summary>
/// 用来测试 RestSharp Post 请求
/// </summary>
public class TestRestSharpPostDto
{
public bool success { get; set; }
public string name { get; set; }
}
}