PowerToys/Plugins/Wox.Plugin.Folder/Settings.cs

13 lines
272 B
C#
Raw Normal View History

2015-10-31 07:17:34 +08:00
using System.Collections.Generic;
using Newtonsoft.Json;
using Wox.Infrastructure.Storage;
namespace Wox.Plugin.Folder
{
public class Settings
{
[JsonProperty]
2016-06-16 09:59:31 +08:00
public List<FolderLink> FolderLinks { get; set; } = new List<FolderLink>();
}
}