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.

41 lines
1.5 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 SocialWallBlockUnblockFeed
  8. {
  9. public List<FeedResponse> GetBlockUnblockFeed()
  10. {
  11. FeedResponse _responsefeed = new FeedResponse();
  12. List<FeedResponse> _responsefeeds = new List<FeedResponse>();
  13. _responsefeed.id = "test";
  14. _responsefeed.userId = "test";
  15. _responsefeed.userDpUrl = "test";
  16. _responsefeed.firstName = "test";
  17. _responsefeed.middleName = "test";
  18. _responsefeed.lastName = "test";
  19. _responsefeed.nickName = "test";
  20. _responsefeed.updatedDate = "test";
  21. _responsefeed.createdDate = "test";
  22. _responsefeed.agoDate = "test";
  23. _responsefeed.nativeCountry = "test";
  24. _responsefeed.accessType = "test";
  25. _responsefeed.blocked = "test";
  26. _responsefeed.blockedMessage = "test";
  27. _responsefeed.reported = "test";
  28. _responsefeed.reportedMessage = "test";
  29. _responsefeed.totalLike = "test";
  30. _responsefeed.totalComment = "test";
  31. _responsefeed.liked = "test";
  32. _responsefeed.feedText = "test";
  33. _responsefeed.feedImageId = "test";
  34. _responsefeed.feedImage = "test";
  35. _responsefeeds.Add(_responsefeed);
  36. return _responsefeeds;
  37. }
  38. }
  39. }