Revert "a property definitely works, wtf"

This reverts commit 9e20d014aa.
This commit is contained in:
Mike Griese
2025-08-19 09:12:36 -05:00
parent 9e20d014aa
commit 13b7ff1315
6 changed files with 7 additions and 11 deletions

View File

@@ -191,7 +191,7 @@ internal sealed partial class SampleListPage : ListPage
public override string Name => "Whatever";
public IDictionary<string, object> GetProperties => new Dictionary<string, object>()
public IDictionary<string, object> GetProperties() => new Dictionary<string, object>()
{
{ "Foo", "bar" },
{ "Secret", 42 },
@@ -215,7 +215,7 @@ internal sealed partial class SampleListPage : ListPage
return CommandResult.ShowToast("whoop");
}
public IDictionary<string, object> GetProperties => new Dictionary<string, object>()
public IDictionary<string, object> GetProperties() => new Dictionary<string, object>()
{
{ "yo", "dog" },
{ "Secret", 12345 },