// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The scanning. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Json.State { /// /// The scanning. /// public class Scanning { /// /// Gets or sets the preview. /// public int Preview { get; set; } /// /// Gets or sets the preview count. /// public int PreviewCount { get; set; } /// /// Gets or sets the progress. /// public double Progress { get; set; } /// /// Gets or sets the title. /// public int Title { get; set; } /// /// Gets or sets the title count. /// public int TitleCount { get; set; } } }