mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
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>();
|
|
}
|
|
}
|