Added Giphy support, Favourites
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
using EbbesMemeClipboard.Models;
|
||||
|
||||
namespace EbbesMemeClipboard.Services;
|
||||
|
||||
public interface IFavoritesService
|
||||
{
|
||||
IReadOnlyList<FavoriteRecord> GetForSource(MemeSource source);
|
||||
bool IsFavorite(MemeSource source, string key);
|
||||
Task AddAsync(FavoriteRecord record);
|
||||
Task RemoveAsync(MemeSource source, string key);
|
||||
}
|
||||
Reference in New Issue
Block a user