diff options
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/AboutViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/AboutViewModel.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/AboutViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/AboutViewModel.cs new file mode 100644 index 000000000..aeb0ee822 --- /dev/null +++ b/win/CS/HandBrakeWPF/ViewModels/AboutViewModel.cs @@ -0,0 +1,20 @@ +/* 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
+{
+ using Caliburn.PresentationFramework.ApplicationModel;
+
+ /// <summary>
+ /// The About View Model
+ /// </summary>
+ public class AboutViewModel : ViewModelBase
+ {
+ public AboutViewModel(IWindowManager windowManager) : base(windowManager)
+ {
+ }
+
+ }
+}
|