ToastViewModel.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 CommunityToolkit.Mvvm.ComponentModel;
 6  using CommunityToolkit.Mvvm.Messaging;
 7  using Microsoft.CmdPal.Core.ViewModels.Messages;
 8  
 9  namespace Microsoft.CmdPal.Core.ViewModels;
10  
11  public partial class ToastViewModel : ObservableObject
12  {
13      [ObservableProperty]
14      public partial string ToastMessage { get; set; } = string.Empty;
15  }