mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-17 04:58:04 +08:00
39 lines
627 B
C#
39 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()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|