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.

25 lines
837 B

  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 SocialWallGetReportDetails
  8. {
  9. public List<FeedsReportResponse> GetReportDetails()
  10. {
  11. FeedsReportResponse _responsefeed = new FeedsReportResponse();
  12. List<FeedsReportResponse> _responsefeeds = new List<FeedsReportResponse>();
  13. _responsefeed.id = "test";
  14. _responsefeed.feedId = "test";
  15. _responsefeed.reporterId = "test";
  16. _responsefeed.reporterName = "test";
  17. _responsefeed.reporterDpUrl = "test";
  18. _responsefeed.reportMessage = "test";
  19. _responsefeed.reportDate = "test";
  20. _responsefeeds.Add(_responsefeed);
  21. return _responsefeeds;
  22. }
  23. }
  24. }