diff options
Diffstat (limited to 'win/C#/HandBrakeWPF/ViewModels')
-rw-r--r-- | win/C#/HandBrakeWPF/ViewModels/AboutViewModel.cs | 14 | ||||
-rw-r--r-- | win/C#/HandBrakeWPF/ViewModels/AddPresetViewModel.cs | 14 | ||||
-rw-r--r-- | win/C#/HandBrakeWPF/ViewModels/OptionsViewModel.cs | 14 | ||||
-rw-r--r-- | win/C#/HandBrakeWPF/ViewModels/PreviewViewModel.cs | 14 | ||||
-rw-r--r-- | win/C#/HandBrakeWPF/ViewModels/QueueViewModel.cs | 14 |
5 files changed, 70 insertions, 0 deletions
diff --git a/win/C#/HandBrakeWPF/ViewModels/AboutViewModel.cs b/win/C#/HandBrakeWPF/ViewModels/AboutViewModel.cs new file mode 100644 index 000000000..603bfb416 --- /dev/null +++ b/win/C#/HandBrakeWPF/ViewModels/AboutViewModel.cs @@ -0,0 +1,14 @@ +/* AboutViewModel.cs $
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.fr>.
+ It may be used under the terms of the GNU General Public License. */
+
+namespace HandBrakeWPF.ViewModels
+{
+ /// <summary>
+ /// The About View Model
+ /// </summary>
+ public class AboutViewModel : ViewModelBase
+ {
+ }
+}
diff --git a/win/C#/HandBrakeWPF/ViewModels/AddPresetViewModel.cs b/win/C#/HandBrakeWPF/ViewModels/AddPresetViewModel.cs new file mode 100644 index 000000000..bcd55fcfc --- /dev/null +++ b/win/C#/HandBrakeWPF/ViewModels/AddPresetViewModel.cs @@ -0,0 +1,14 @@ +/* AddPresetViewModel.cs $
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.fr>.
+ It may be used under the terms of the GNU General Public License. */
+
+namespace HandBrakeWPF.ViewModels
+{
+ /// <summary>
+ /// The Add Preset View Model
+ /// </summary>
+ public class AddPresetViewModel : ViewModelBase
+ {
+ }
+}
diff --git a/win/C#/HandBrakeWPF/ViewModels/OptionsViewModel.cs b/win/C#/HandBrakeWPF/ViewModels/OptionsViewModel.cs new file mode 100644 index 000000000..62394c167 --- /dev/null +++ b/win/C#/HandBrakeWPF/ViewModels/OptionsViewModel.cs @@ -0,0 +1,14 @@ +/* OptionsViewModel.cs $
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.fr>.
+ It may be used under the terms of the GNU General Public License. */
+
+namespace HandBrakeWPF.ViewModels
+{
+ /// <summary>
+ /// The Options View Model
+ /// </summary>
+ public class OptionsViewModel : ViewModelBase
+ {
+ }
+}
diff --git a/win/C#/HandBrakeWPF/ViewModels/PreviewViewModel.cs b/win/C#/HandBrakeWPF/ViewModels/PreviewViewModel.cs new file mode 100644 index 000000000..b70d2179f --- /dev/null +++ b/win/C#/HandBrakeWPF/ViewModels/PreviewViewModel.cs @@ -0,0 +1,14 @@ +/* PreviewViewModel.cs $
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.fr>.
+ It may be used under the terms of the GNU General Public License. */
+
+namespace HandBrakeWPF.ViewModels
+{
+ /// <summary>
+ /// The About View Model
+ /// </summary>
+ public class PreviewViewModel : ViewModelBase
+ {
+ }
+}
diff --git a/win/C#/HandBrakeWPF/ViewModels/QueueViewModel.cs b/win/C#/HandBrakeWPF/ViewModels/QueueViewModel.cs new file mode 100644 index 000000000..bbe013d3a --- /dev/null +++ b/win/C#/HandBrakeWPF/ViewModels/QueueViewModel.cs @@ -0,0 +1,14 @@ +/* QueueViewModel.cs $
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.fr>.
+ It may be used under the terms of the GNU General Public License. */
+
+namespace HandBrakeWPF.ViewModels
+{
+ /// <summary>
+ /// The Preview View Model
+ /// </summary>
+ public class QueueViewModel : ViewModelBase
+ {
+ }
+}
|