Flow.Launcher/Plugins/Flow.Launcher.Plugin.Folder/Settings.cs

13 lines
292 B
C#
Raw Normal View History

2015-10-30 23:17:34 +00:00
using System.Collections.Generic;
using Newtonsoft.Json;
2020-04-21 09:12:17 +00:00
using Flow.Launcher.Infrastructure.Storage;
2020-04-21 09:12:17 +00:00
namespace Flow.Launcher.Plugin.Folder
{
public class Settings
{
[JsonProperty]
2016-06-16 01:59:31 +00:00
public List<FolderLink> FolderLinks { get; set; } = new List<FolderLink>();
}
}