aboutsummaryrefslogtreecommitdiff
path: root/src/Services/DevHive.Services/Interfaces/IFeedService.cs
blob: b507b3b8d3f27867051af00fb69bc70bb4fbb7d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
using System.Threading.Tasks;
using DevHive.Services.Models;

namespace DevHive.Services.Interfaces
{
	public interface IFeedService
	{
		Task<ReadPageServiceModel> GetPage(GetPageServiceModel getPageServiceModel);
		Task<ReadPageServiceModel> GetUserPage(GetPageServiceModel model);
	}
}