Allow validation to be looked up by name

This commit is contained in:
TheXamlGuy
2024-09-27 19:55:45 +01:00
parent 0871c42438
commit bd577975b2
4 changed files with 70 additions and 3 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ namespace Toolkit.Foundation;
public interface IValidation :
INotifyPropertyChanged
{
IReadOnlyDictionary<string, string> Errors { get; }
IReadOnlyIndexDictionary<string, string> Errors { get; }
bool HasErrors { get; }