2019-11-28 17:38:26 +00:00
|
|
|
|
using Roadie.Library;
|
|
|
|
|
using Roadie.Library.Enums;
|
2018-11-15 04:11:25 +00:00
|
|
|
|
using Roadie.Library.Models;
|
|
|
|
|
using Roadie.Library.Models.Pagination;
|
|
|
|
|
using Roadie.Library.Models.Users;
|
2018-11-16 03:37:00 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2018-11-15 04:11:25 +00:00
|
|
|
|
|
|
|
|
|
namespace Roadie.Api.Services
|
|
|
|
|
{
|
|
|
|
|
public interface IBookmarkService
|
|
|
|
|
{
|
2020-06-07 22:46:24 +00:00
|
|
|
|
Task<PagedResult<BookmarkList>> ListAsync(User roadieUser, PagedRequest request, bool? doRandomize = false, BookmarkType? filterType = null);
|
|
|
|
|
Task<OperationResult<bool>> RemoveAllBookmarksForItemAsync(BookmarkType type, int id);
|
2018-11-15 04:11:25 +00:00
|
|
|
|
}
|
|
|
|
|
}
|