24小时一体机服务
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.

30 lines
670 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace Elight.Logic
{
internal class RequestResults
{
public string? encryption { get; set; }
/// <summary>
/// 数据
/// </summary>
[DataMember]
public string? data { get; set; }
/// <summary>
/// 返回参数编号
/// </summary>
[DataMember]
public string? code { get; set; }
/// <summary>
/// 提示
/// </summary>
[DataMember]
public string? msg { get; set; }
}
}