PowerToys/Plugins/Wox.Plugin.Folder/Settings.cs
2016-04-21 20:56:53 +01:00

13 lines
246 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; }
}
}