// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The PopupWindowViewModel interface. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrakeWPF.ViewModels.Interfaces { /// /// The PopupWindowViewModel interface. /// public interface IPopupWindowViewModel { /// /// Gets the content view model. /// IViewModelBase ContentViewModel { get; } } }