using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace LeaRun.Util.WebControl
{
///
/// 表示Ajax操作结果
///
public class AjaxResult
{
///
/// 获取 Ajax操作结果类型
///
public ResultType type { get; set; }
///
/// 获取 Ajax操作结果编码
///
public int errorcode { get; set; }
///
/// 获取 消息内容
///
public string message { get; set; }
///
/// 获取 返回数据
///
public object resultdata { get; set; }
}
///
/// 表示 ajax 操作结果类型的枚举
///
public enum ResultType
{
///
/// 消息结果类型
///
info = 0,
///
/// 成功结果类型
///
success = 1,
///
/// 警告结果类型
///
warning = 2,
///
/// 异常结果类型
///
error = 3
}
}