12 lines
257 B
C#
12 lines
257 B
C#
namespace DouyinApi.Model.ViewModels
|
|
{
|
|
/// <summary>
|
|
/// 用来测试 RestSharp Post 请求
|
|
/// </summary>
|
|
public class TestRestSharpPostDto
|
|
{
|
|
public bool success { get; set; }
|
|
public string name { get; set; }
|
|
}
|
|
}
|