mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
15 lines
No EOL
516 B
C#
15 lines
No EOL
516 B
C#
using Roadie.Library;
|
|
using Roadie.Library.Enums;
|
|
using Roadie.Library.Models;
|
|
using Roadie.Library.Models.Pagination;
|
|
using Roadie.Library.Models.Users;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Roadie.Api.Services
|
|
{
|
|
public interface IBookmarkService
|
|
{
|
|
Task<PagedResult<BookmarkList>> ListAsync(User roadieUser, PagedRequest request, bool? doRandomize = false, BookmarkType? filterType = null);
|
|
Task<OperationResult<bool>> RemoveAllBookmarksForItemAsync(BookmarkType type, int id);
|
|
}
|
|
} |