using System.Collections.Generic; using Newtonsoft.Json; using Wox.Infrastructure.Storage; namespace Wox.Plugin.Folder { public class Settings { [JsonProperty] public List FolderLinks { get; set; } = new List(); } }