333
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Domain.Message.Request.Million
|
||||
{
|
||||
public class JsonStringReq
|
||||
{
|
||||
public string jsonstring { get; set; }
|
||||
}
|
||||
|
||||
public class RequestModel
|
||||
{
|
||||
/// <summary>
|
||||
/// 请求URL
|
||||
/// </summary>
|
||||
public string Url
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 请求的token
|
||||
/// </summary>
|
||||
public object Token
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 请求的参数
|
||||
/// </summary>
|
||||
public string Param
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user