/ src / modules / cmdpal / Core / Microsoft.CmdPal.Core.ViewModels / LoadingPageViewModel.cs
LoadingPageViewModel.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.CommandPalette.Extensions;
 6  
 7  namespace Microsoft.CmdPal.Core.ViewModels;
 8  
 9  public partial class LoadingPageViewModel : PageViewModel
10  {
11      public LoadingPageViewModel(IPage? model, TaskScheduler scheduler, AppExtensionHost host)
12          : base(model, scheduler, host)
13      {
14          ModelIsLoading = true;
15          IsInitialized = false;
16      }
17  }