123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace AirWheel.Cycling.Entity.ResponseMod
- {
- public class ResponseFeedList
- {
- public int status
- {
- get;set;
- }
-
- public string msg
- {
- get;set;
- }
- public int firstId
- {
- get;set;
- }
- public string html
- {
- get;set;
- }
- public string pageHtml
- {
- get;set;
- }
- public int count
- {
- get;set;
- }
- public int? maxId
- {
- get;set;
- }
- public int? loadId
- {
- get;set;
- }
- }
- }
|