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.

16 lines
562 B

  1. using Swift.API.Common;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace Swift.API.TPAPIs.GMESocialWallAPI
  7. {
  8. public interface ISocialWallAPIService
  9. {
  10. FeedResponse GetFeeds(FeedRequest data, out DbResult dbResult);
  11. Feeds GetSpecificFeed(FeedQueryParameters data, out DbResult dbResult);
  12. List<ReportedFeedResponse> GetFeedReportDetails(FeedQueryParameters data,out DbResult dbResult);
  13. string BlockUnblockFeed(BlockUnblockFeedParameters data,out DbResult dbResult);
  14. }
  15. }