/* AddPresetViewModel.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 Add Preset View Model /// public class AddPresetViewModel : ViewModelBase { public AddPresetViewModel(IServiceLocator locator) : base(locator) { } } }