using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace CB.Entity
{
public class ResultMessage
{
///
/// 操作状态
///
private bool state = false;
public bool State
{
get { return state; }
set { state = value; }
}
///
/// 返回信息
///
private string message;
public string Message
{
get { return message; }
set { message = value; }
}
}
}