mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
24 lines
No EOL
600 B
C#
24 lines
No EOL
600 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Reflection;
|
|
using Wox.Infrastructure.Storage;
|
|
|
|
namespace Wox.Plugin.Program
|
|
{
|
|
[Serializable]
|
|
public class ProgramCacheStorage : BinaryStorage<ProgramCacheStorage>
|
|
{
|
|
public List<Program> Programs = new List<Program>();
|
|
|
|
protected override string ConfigFolder
|
|
{
|
|
get { return Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location); }
|
|
}
|
|
|
|
protected override string ConfigName
|
|
{
|
|
get { return "ProgramIndexCache"; }
|
|
}
|
|
}
|
|
} |