using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace CPE.App.Web.Models { public class JsonDataResult { public bool Success { get; set; } public object Data { get; set; } } }