summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Factories/ViewModelFactory.cs
diff options
context:
space:
mode:
Diffstat (limited to 'win/CS/HandBrakeWPF/Factories/ViewModelFactory.cs')
-rw-r--r--win/CS/HandBrakeWPF/Factories/ViewModelFactory.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Factories/ViewModelFactory.cs b/win/CS/HandBrakeWPF/Factories/ViewModelFactory.cs
new file mode 100644
index 000000000..e8e298546
--- /dev/null
+++ b/win/CS/HandBrakeWPF/Factories/ViewModelFactory.cs
@@ -0,0 +1,24 @@
+// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="ViewModelFactory.cs" company="HandBrake Project (http://handbrake.fr)">
+// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
+// </copyright>
+// <summary>
+// The View Model Factory
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrakeWPF.Factories
+{
+ /// <summary>
+ /// The View Model Factory
+ /// </summary>
+ public class ViewModelFactory
+ {
+ /// <summary>
+ /// Initializes a new instance of the <see cref="ViewModelFactory"/> class.
+ /// </summary>
+ public ViewModelFactory()
+ {
+ }
+ }
+}