2021-11-14 01:19:28 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Start.Server.Models;
|
2021-11-16 05:53:19 +00:00
|
|
|
|
using Start.Shared;
|
2021-11-14 01:19:28 +00:00
|
|
|
|
|
|
|
|
|
namespace Start.Server.Data.Services.Interfaces {
|
|
|
|
|
public interface IBookmarkGroupService {
|
|
|
|
|
public (BookmarkStatus, BookmarkGroup?) GetBookmarkGroup(string userId,
|
|
|
|
|
int bookmarkGroupId, bool includeBookmarks = false);
|
|
|
|
|
public IList<BookmarkGroup> GetUserBookmarkGroups(string userId,
|
|
|
|
|
bool includeBookmarks = false);
|
|
|
|
|
|
|
|
|
|
public (BookmarkStatus, BookmarkGroup?) CreateBookmarkGroup(string userId, string title,
|
|
|
|
|
string color, int bookmarkContainerId);
|
|
|
|
|
public (BookmarkStatus, BookmarkGroup?) UpdateBookmarkGroup(string userId,
|
|
|
|
|
BookmarkGroup bookmarkGroup);
|
|
|
|
|
public BookmarkStatus DeleteBookmarkGroup(string userId, int bookmarkGroupId);
|
|
|
|
|
}
|
|
|
|
|
}
|