You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.2 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Swift.DAL.SocialWall.Feeds
  6. {
  7. public class FeedResponse
  8. {
  9. public string id { get; set; }
  10. public string userId { get; set; }
  11. public string userDpUrl { get; set; }
  12. public string firstName { get; set; }
  13. public string middleName { get; set; }
  14. public string lastName { get; set; }
  15. public string nickName { get; set; }
  16. public string updatedDate { get; set; }
  17. public string createdDate { get; set; }
  18. public string agoDate { get; set; }
  19. public string nativeCountry { get; set; }
  20. public string accessType { get; set; }
  21. public string blocked { get; set; }
  22. public string blockedMessage { get; set; }
  23. public string reported { get; set; }
  24. public string reportedMessage { get; set; }
  25. public string totalLike { get; set; }
  26. public string totalComment { get; set; }
  27. public string liked { get; set; }
  28. public string feedText { get; set; }
  29. public string feedImageId { get; set; }
  30. public string feedImage { get; set; }
  31. }
  32. }