summaryrefslogtreecommitdiff
path: root/Models/Interfaces/SettingsModel.cs
diff options
context:
space:
mode:
authorDennis Brentjes <d.brentjes@gmail.com>2019-12-24 16:45:22 +0100
committerDennis Brentjes <d.brentjes@gmail.com>2019-12-24 16:45:22 +0100
commitfbe866f7b26c10bb54d72c029f8c628988a90be2 (patch)
tree7617f1209333ff40c31aa156d541e8ea59e991ed /Models/Interfaces/SettingsModel.cs
parent0f98b398520a3f5cc6a299e7fd3b8fab494480d7 (diff)
downloadavalar-fbe866f7b26c10bb54d72c029f8c628988a90be2.tar.gz
avalar-fbe866f7b26c10bb54d72c029f8c628988a90be2.tar.bz2
avalar-fbe866f7b26c10bb54d72c029f8c628988a90be2.zip
Started on the resizing step of the pipeline + pipeline design.
Diffstat (limited to 'Models/Interfaces/SettingsModel.cs')
-rw-r--r--Models/Interfaces/SettingsModel.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/Models/Interfaces/SettingsModel.cs b/Models/Interfaces/SettingsModel.cs
new file mode 100644
index 0000000..6149c1e
--- /dev/null
+++ b/Models/Interfaces/SettingsModel.cs
@@ -0,0 +1,12 @@
+
+using Avalonia;
+
+namespace Avalar.Models.Interfaces
+{
+ interface ISettingsModel
+ {
+ public double Width { get; set; }
+
+ public double Height { get; set; }
+ }
+}