// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The Manage Preset View Model Interface // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrakeWPF.ViewModels.Interfaces { using HandBrakeWPF.Services.Presets.Model; /// /// The Add Preset View Model /// public interface IManagePresetViewModel { /// /// Prepare the Preset window /// /// /// The preset. /// void Setup(Preset preset); /// /// Get the managed preset. /// Preset Preset { get; } } }