using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IBKLinker_Minio.Entity
{
public class RequestEntity
{
///
/// http请求返回的中文消息
///
public string msg { get; set; }
///
/// http请求返回的数据集
///
public Object data { get; set; }
///
/// http请求返回的状态码
///
public string code { get; set; }
}
}