Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'UVtools.Core/Scripting/ScriptSaveFileDialogInput.cs')
-rw-r--r--UVtools.Core/Scripting/ScriptSaveFileDialogInput.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/UVtools.Core/Scripting/ScriptSaveFileDialogInput.cs b/UVtools.Core/Scripting/ScriptSaveFileDialogInput.cs
new file mode 100644
index 0000000..e2d64c8
--- /dev/null
+++ b/UVtools.Core/Scripting/ScriptSaveFileDialogInput.cs
@@ -0,0 +1,18 @@
+/*
+ * GNU AFFERO GENERAL PUBLIC LICENSE
+ * Version 3, 19 November 2007
+ * Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
+ * Everyone is permitted to copy and distribute verbatim copies
+ * of this license document, but changing it is not allowed.
+ */
+
+namespace UVtools.Core.Scripting
+{
+ public class ScriptSaveFileDialogInput : ScriptFileDialogInput
+ {
+ /// <summary>
+ /// Gets or sets the default extension for the dialog
+ /// </summary>
+ public string DefaultExtension { get; set; }
+ }
+}