/* PreviewViewModel.cs $ This file is part of the HandBrake source code. Homepage: . It may be used under the terms of the GNU General Public License. */ namespace HandBrakeWPF.ViewModels { using Caliburn.PresentationFramework.ApplicationModel; /// /// The About View Model /// public class PreviewViewModel : ViewModelBase { public PreviewViewModel(IWindowManager windowManager) : base(windowManager) { } } }