2021-09-22 23:09:30 +00:00
|
|
|
|
using Flow.Launcher.Plugin.BrowserBookmark.Models;
|
|
|
|
|
|
using System.Collections.Generic;
|
2021-09-21 18:50:51 +00:00
|
|
|
|
|
|
|
|
|
|
namespace Flow.Launcher.Plugin.BrowserBookmark
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IBookmarkLoader
|
|
|
|
|
|
{
|
|
|
|
|
|
public List<Bookmark> GetBookmarks();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|