Files
Api/DouyinApi.Model/ViewModels/TestRestSharpPostDto.cs

12 lines
257 B
C#
Raw Normal View History

2025-11-04 21:09:16 +08:00
namespace DouyinApi.Model.ViewModels
{
/// <summary>
/// 用来测试 RestSharp Post 请求
/// </summary>
public class TestRestSharpPostDto
{
public bool success { get; set; }
public string name { get; set; }
}
}