using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MailSend.Web.Models { public class RespCommon { /// /// 成功 /// public const int RespCodeSuccess = 0; /// /// 参数错误 /// public const int RespCodeParamError = -10; /// /// 服务器错误 /// public const int RespCodeServerError = -100; public bool Success { get; set; } public string Message { get; set; } public int Code { get; set; } } }