roadie/Roadie.Api.Services/IBookmarkService.cs

15 lines
506 B
C#
Raw Normal View History

2019-11-28 17:38:26 +00:00
using Roadie.Library;
using Roadie.Library.Enums;
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;
namespace Roadie.Api.Services
{
public interface IBookmarkService
{
2019-11-28 17:38:26 +00:00
Task<OperationResult<bool>> RemoveAllBookmarksForItem(BookmarkType type, int id);
Task<PagedResult<BookmarkList>> List(User roadieUser, PagedRequest request, bool? doRandomize = false, BookmarkType? filterType = null);
}
}