// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Defines the JobContextService type. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrakeWPF.Services { using HandBrake.ApplicationServices.Model; using HandBrake.ApplicationServices.Parsing; using HandBrakeWPF.Services.Interfaces; /// /// A Context service for the current Job Information. /// public class JobContextService : IJobContextService { /// /// Gets or sets CurrentTask. /// public EncodeTask CurrentTask { get; set; } /// /// Gets or sets CurrentSource. /// public Source CurrentSource { get; set; } } }