1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace AirWheel.Cycling.Entity.ResponseMod
- {
- public class ResponseFeedPost
- {
- public string data
- {
- get;set;
- }
- public int feedId
- {
- get;set;
- }
- public int is_audit
- {
- get;set;
- }
- public int status
- {
- get;set;
- }
- }
- }
|