// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The Countdown Alert View Model Interface // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrakeWPF.ViewModels.Interfaces { /// /// The Countdown Alert View Model Interface /// public interface ICountdownAlertViewModel { /// /// Gets a value indicating whether is cancelled. /// bool IsCancelled { get; } /// /// The set action. /// /// /// The action. /// void SetAction(string action); } }