PowerToys/Plugins/Wox.Plugin.Folder/FolderStorage.cs

15 lines
362 B
C#
Raw Normal View History

2015-10-31 07:17:34 +08:00
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; }
2016-01-07 10:31:17 +08:00
protected override string FileName { get; } = "settings_folder_plugin";
}
}