ResponseFeedPost.cs 491 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace AirWheel.Cycling.Entity.ResponseMod
  7. {
  8. public class ResponseFeedPost
  9. {
  10. public string data
  11. {
  12. get;set;
  13. }
  14. public int feedId
  15. {
  16. get;set;
  17. }
  18. public int is_audit
  19. {
  20. get;set;
  21. }
  22. public int status
  23. {
  24. get;set;
  25. }
  26. }
  27. }