This commit is contained in:
Matthew Parker
2023-08-31 21:37:54 +10:00
parent 0a7f1c072e
commit 701218a28b
21 changed files with 55 additions and 41 deletions

View File

@@ -0,0 +1,15 @@
using System.Collections.ObjectModel;
using CommunityToolkit.Mvvm.ComponentModel;
namespace DotNetSolutionTools.App.ViewModels;
public partial class ViewModelBase : ObservableObject
{
protected ViewModelBase()
{
ErrorMessages = new ObservableCollection<string>();
}
[ObservableProperty]
private ObservableCollection<string>? _errorMessages;
}