Amend compoments to be keyed based

This commit is contained in:
TheXamlGuy
2024-06-29 11:23:45 +01:00
parent e19a963f8e
commit f921860fbe
9 changed files with 37 additions and 40 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
namespace Toolkit.Foundation;
public record NamedComponent(string Name)
public record NamedComponent(string Key)
{
public override string ToString() => Name;
public override string ToString() => Key;
}