using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FTP.Models
{
///
/// 返回消息实体
///
public class OperationResult
{
///
/// dataTable
///
public DataTable ds { get; set; }
///
/// bool值
///
public bool isOk { get; set; }
///
/// 返回消息
///
public string tRes { get; set; }
///
/// StrList
///
public List strList { get; set; }
///
/// 返回消息
///
public string returnValue { get; set; }
///
/// 序号
///
public int seqNo { get; set; }
}
}