44 lines
771 B
C#
44 lines
771 B
C#
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;
|
|
}
|
|
}
|
|
}
|