mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-16 12:39:16 +08:00
17 lines
404 B
C#
17 lines
404 B
C#
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Reflection;
|
|
using Newtonsoft.Json;
|
|
using Wox.Infrastructure.Storage;
|
|
|
|
namespace Wox.Plugin.Folder
|
|
{
|
|
public class FolderStorage : JsonStrorage<FolderStorage>
|
|
{
|
|
[JsonProperty]
|
|
public List<FolderLink> FolderLinks { get; set; }
|
|
|
|
protected override string FileName { get; } = "settings_folder_plugin";
|
|
}
|
|
}
|