/* AboutViewModel.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 Microsoft.Practices.ServiceLocation; /// /// The About View Model /// public class AboutViewModel : ViewModelBase { public AboutViewModel(IServiceLocator locator) : base(locator) { } } }