mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
38 lines
627 B
C#
38 lines
627 B
C#
using WinAlfred.Plugin;
|
|
|
|
namespace WinAlfred.Helper
|
|
{
|
|
public class SelectedRecords
|
|
{
|
|
private int hasAddedCount = 0;
|
|
|
|
public void LoadSelectedRecords()
|
|
{
|
|
|
|
}
|
|
|
|
public void AddSelect(Result result)
|
|
{
|
|
hasAddedCount++;
|
|
if (hasAddedCount == 10)
|
|
{
|
|
SaveSelectedRecords();
|
|
hasAddedCount = 0;
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
public int GetSelectedCount(Result result)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
public void SaveSelectedRecords()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|