using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LoginModel { [Serializable] public class BaseResponse { /// /// 返回状态:成功200, 失败201; /// public int status { get; set; } = 201; /// /// 返回状态的描述; /// public string msg { get; set; } = "错误"; } }