/ src / modules / cmdpal / Core / Microsoft.CmdPal.Core.ViewModels / SmallGridPropertiesViewModel.cs
SmallGridPropertiesViewModel.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  using Microsoft.CmdPal.Core.ViewModels.Models;
 6  using Microsoft.CommandPalette.Extensions;
 7  
 8  namespace Microsoft.CmdPal.Core.ViewModels;
 9  
10  public class SmallGridPropertiesViewModel : IGridPropertiesViewModel
11  {
12      private readonly ExtensionObject<ISmallGridLayout> _model;
13  
14      public bool ShowTitle => false;
15  
16      public bool ShowSubtitle => false;
17  
18      public SmallGridPropertiesViewModel(ISmallGridLayout smallGridLayout)
19      {
20          _model = new(smallGridLayout);
21      }
22  
23      public void InitializeProperties()
24      {
25      }
26  }