gyhlw_dotnet/网站项目/VRS/Handler/Result.cs

33 lines
721 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace VRS.Handler
{
public class Result
{
public bool state = false;
public string message = "";
public object data = null;
public Result(bool _state, object _data, string _message)
{
this.state = _state;
this.data = _data;
this.message = _message;
}
public Result(bool _state, object _data)
{
this.state = _state;
this.data = _data;
}
public Result(bool _state, string _message)
{
this.state = _state;
this.message = _message;
}
}
}