mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 03:37:59 +01:00
13 lines
272 B
C#
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>();
|
|||
|
|
}
|
|||
|
|
}
|