summaryrefslogtreecommitdiff
path: root/IDialog.cs
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2023-09-05 01:01:24 +1000
committerJake Mannens <jake@asger.xyz>2025-08-20 00:48:45 +1000
commit988f68191bbd93ce225205ae2a0ebcdf9df45655 (patch)
treee4e173ffc226b879dacd65efd85ecfee0529e644 /IDialog.cs
parentac7f9cca27f5a1a1839bfe5be5a53853f53b7b17 (diff)
Tag names and aliases are now verified to be unique
Diffstat (limited to 'IDialog.cs')
-rw-r--r--IDialog.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/IDialog.cs b/IDialog.cs
new file mode 100644
index 0000000..41e86a8
--- /dev/null
+++ b/IDialog.cs
@@ -0,0 +1,8 @@
+namespace HyperBooru;
+
+public interface IDialog {
+ public bool Visible { get; set; }
+
+ public void Show();
+ public void Hide();
+}