// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Defines the ITitleSpecificViewModel type. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrakeWPF.ViewModels.Interfaces { /// /// The Title Specific View Model Interface /// public interface ITitleSpecificViewModel { /// /// Gets SelectedTitle. /// int? SelectedTitle { get; } } }