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

using Swift.API.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Swift.API.TPAPIs.GMESocialWallAPI
{
public interface ISocialWallAPIService
{
FeedResponse GetFeeds(FeedRequest data, out DbResult dbResult);
Feeds GetSpecificFeed(FeedQueryParameters data, out DbResult dbResult);
List<ReportedFeedResponse> GetFeedReportDetails(FeedQueryParameters data,out DbResult dbResult);
string BlockUnblockFeed(BlockUnblockFeedParameters data,out DbResult dbResult);
}
}