mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-24 17:18:00 +08:00
53c4c6cbb8
* Enabling static analysis and settings treat warnings as errors * Fixing/Supressing static analysis warnings in ContextmenuLoader and removing unused code * Fixing static analysis errors in Main.cs * Fixing static analysis warnings for folderpluginSettings.xaml.cs
13 lines
278 B
C#
13 lines
278 B
C#
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
using Wox.Infrastructure.Storage;
|
|
|
|
namespace Microsoft.Plugin.Folder
|
|
{
|
|
public class FolderSettings
|
|
{
|
|
[JsonProperty]
|
|
public List<FolderLink> FolderLinks { get;} = new List<FolderLink>();
|
|
}
|
|
}
|