mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-23 16:37:58 +08:00
1c77887629
* Reduce folder plugin results * Added warning message * Added UI content for warning message in folder plugin * nit fixes for folder plugin changes * Localised warning message * fix Merge conflicts * nit fixes and move warning to end of results * Add IDisposable interface to folder plugin * Add images to MSI
22 lines
587 B
C#
22 lines
587 B
C#
// Copyright (c) Microsoft Corporation
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Microsoft.Plugin.Folder
|
|
{
|
|
public class FolderSettings
|
|
{
|
|
[JsonProperty]
|
|
public List<FolderLink> FolderLinks { get; } = new List<FolderLink>();
|
|
|
|
[JsonProperty]
|
|
public int MaxFolderResults { get; set; } = 50;
|
|
|
|
[JsonProperty]
|
|
public int MaxFileResults { get; set; } = 50;
|
|
}
|
|
}
|