// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// The Main Window View Model
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.ViewModels.Interfaces
{
using HandBrake.ApplicationServices.Model;
///
/// The Main Window View Model
///
public interface IMainViewModel
{
///
/// Sets SelectedPreset.
///
Preset SelectedPreset { set; }
///
/// Shutdown the Application
///
void ExitApplication();
}
}