mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-09 21:38:00 +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()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|