// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The task. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Json.Queue { using HandBrake.ApplicationServices.Interop.Json.Encode; /// /// The task. /// public class Task { /// /// Gets or sets the job. /// public JsonEncodeObject Job { get; set; } } }