PowerToys/Plugins/Wox.Plugin.Folder/FolderStorage.cs
2016-01-08 02:18:19 +00:00

15 lines
362 B
C#

using System.Collections.Generic;
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";
}
}