mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-06-07 09:28:03 +08:00

git-subtree-dir: src/modules/launcher git-subtree-mainline:852689b3df
git-subtree-split:28acd466b3
13 lines
272 B
C#
13 lines
272 B
C#
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
using Wox.Infrastructure.Storage;
|
|
|
|
namespace Wox.Plugin.Folder
|
|
{
|
|
public class Settings
|
|
{
|
|
[JsonProperty]
|
|
public List<FolderLink> FolderLinks { get; set; } = new List<FolderLink>();
|
|
}
|
|
}
|