Implemented an image viewer.

This commit is contained in:
Creeper Lv
2025-12-21 22:45:07 +11:00
parent 40f35ddf63
commit b47fe42a0b
13 changed files with 167 additions and 10 deletions

View File

@@ -0,0 +1,9 @@
using System.Collections.Generic;
namespace Progrart.Pages
{
public class ExecuteArguments
{
public Dictionary<string, string> data = new Dictionary<string, string>();
}
}