mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
27 lines
638 B
C#
27 lines
638 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Reflection;
|
|||
|
using System.Text;
|
|||
|
using Newtonsoft.Json;
|
|||
|
using Wox.Infrastructure.Storage;
|
|||
|
using System.IO;
|
|||
|
|
|||
|
namespace Wox.Plugin.Folder
|
|||
|
{
|
|||
|
public class FolderStorage : JsonStrorage<FolderStorage>
|
|||
|
{
|
|||
|
[JsonProperty]
|
|||
|
public List<FolderLink> FolderLinks { get; set; }
|
|||
|
protected override string ConfigFolder
|
|||
|
{
|
|||
|
get { return Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location); }
|
|||
|
}
|
|||
|
|
|||
|
protected override string ConfigName
|
|||
|
{
|
|||
|
get { return "setting"; }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|