// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The queue task container. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrakeWPF.Services.Queue.Model { /// /// The queue task container. /// public class QueueTaskContainer { /// /// Initializes a new instance of the class. /// /// /// The version. /// /// /// The queuetask. /// public QueueTaskContainer(int version, string queuetask) { Version = version; QueueTask = queuetask; } /// /// Gets or sets the version of the presets stored in this container. /// public int Version { get; set; } /// /// Gets or sets the presets. This is a serialised string. /// public string QueueTask { get; set; } } }