mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 03:59:15 +08:00
15 lines
362 B
C#
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";
|
|
}
|
|
}
|