using System; using System.Net.Http; using System.Threading.Tasks; using Refit; using Start.Shared; using Start.Shared.Api; namespace Start_Tests.Client.MockApis { public class MockBookmarkGroupsApi : IBookmarkGroupsApi { public Task> GetBookmarkGroup(int bookmarkGroupId) { throw new NotImplementedException(); } public Task> CreateBookmarkGroup(string title, string color, int sortOrder, int bookmarkContainerId) { throw new NotImplementedException(); } public Task DeleteBookmarkGroup(int bookmarkGroupId) { throw new NotImplementedException(); } } }