mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 22:54:15 +00:00
12 lines
No EOL
321 B
C#
12 lines
No EOL
321 B
C#
using System.Threading.Tasks;
|
|
using Roadie.Library.Models;
|
|
using Roadie.Library.Models.Pagination;
|
|
using Roadie.Library.Models.Users;
|
|
|
|
namespace Roadie.Api.Services
|
|
{
|
|
public interface IPlayActivityService
|
|
{
|
|
Task<PagedResult<PlayActivityList>> List(PagedRequest request, User roadieUser = null);
|
|
}
|
|
} |