more updates

This commit is contained in:
Mike Griese
2025-08-13 08:41:51 -05:00
parent 62c2c60654
commit b1432c7f54
9 changed files with 82 additions and 30 deletions

View File

@@ -191,7 +191,7 @@ internal sealed partial class SampleListPage : ListPage
public override string Name => "Whatever";
public IDictionary<string, object> Properties => 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> Properties => new Dictionary<string, object>()
public IDictionary<string, object> GetProperties() => new Dictionary<string, object>()
{
{ "yo", "dog" },
{ "Secret", 12345 },