mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 03:59:15 +08:00
39edf1a8ed
1. part of #389 2. file rename 3. fixup
13 lines
246 B
C#
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; }
|
|
}
|
|
}
|