using System; using System.Collections.Generic; using System.Text; namespace GxPress.Result { /// /// App返回 /// public class AppResult { /// /// 状态码 /// public int Code { get; set; } /// /// 消息 /// public string Msg { get; set; } /// /// 是否成功 /// /// public bool Success { get; set; } } }