PowerToys/Plugins/Wox.Plugin.Folder/Settings.cs
2016-06-16 02:59:31 +01:00

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>();
}
}