// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The root object. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Json.Scan { using System.Collections.Generic; /// /// The root object. /// public class JsonScanObject { /// /// Gets or sets the main feature. /// public int MainFeature { get; set; } /// /// Gets or sets the title list. /// public List TitleList { get; set; } } }