a property definitely works, wtf

This commit is contained in:
Mike Griese
2025-08-19 09:07:04 -05:00
parent 8268c58ab5
commit 9e20d014aa
6 changed files with 11 additions and 7 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 },