You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
302 B
19 lines
302 B
namespace EC.Utils.ZMQ
|
|
{
|
|
public class RequestModel
|
|
{
|
|
public string method { get; set; }
|
|
public string jsonstr { get; set; }
|
|
}
|
|
|
|
public class ResultModel
|
|
{
|
|
public ResultModel()
|
|
{
|
|
result = "net error";
|
|
}
|
|
|
|
public string result { get; set; }
|
|
public string jsonstr { get; set; }
|
|
}
|
|
}
|