1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace AirWheel.Cycling.Entity.ResponseMod
- {
- public class ReslutWebMessage
- {
- /// <summary>
- ///
- /// </summary>
- 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;
- }
- }
- }
|