diff options
| author | Jake Mannens <jake@asger.xyz> | 2023-09-05 01:01:24 +1000 |
|---|---|---|
| committer | Jake Mannens <jake@asger.xyz> | 2023-09-05 01:01:24 +1000 |
| commit | acb74202f5391272c2e1823dfe04a044c7f7a9a7 (patch) | |
| tree | 09dc032ba526306d8916035bf92336c095246741 /IDialog.cs | |
| parent | 1b080819b26e4e84e5e9c88445806e43698b6757 (diff) | |
Tag names and aliases are now verified to be unique
Diffstat (limited to 'IDialog.cs')
| -rw-r--r-- | IDialog.cs | 8 |
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(); +} |
