using Newtonsoft.Json; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Web; using System.Web.Mvc; namespace Neo.Afx.Common { public class JsonBaseResult { public bool Success { get; set; } public object Result { get; set; } public string ErrorCode { get; set; } public string Error { get; set; } } }