using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AirWheel.Cycling.Entity.ResponseMod { public class ReslutWebMessage { /// /// /// public int status { get; set; } public WebMessage info { get;set; } public object data { get;set; } } public class WebMessage { public int comment { get;set; } public int digg { get;set; } public int notice { get;set; } public int at { get;set; } } }