SuggestionItem.cs
1 // Copyright (c) Microsoft Corporation 2 // The Microsoft Corporation licenses this file to you under the MIT license. 3 // See the LICENSE file in the project root for more information. 4 5 namespace Microsoft.PowerToys.Settings.UI.ViewModels 6 { 7 public sealed partial class SuggestionItem 8 { 9 public string Header { get; init; } 10 11 public string Icon { get; init; } 12 13 public string PageTypeName { get; init; } 14 15 public string ElementName { get; init; } 16 17 public string ParentElementName { get; init; } 18 19 public string Subtitle { get; init; } 20 21 public bool IsShowAll { get; init; } 22 23 public bool IsNoResults { get; init; } 24 } 25 }