// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The source. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Json.Encode { /// /// The source. /// public class Source { /// /// Gets or sets the angle. /// public int Angle { get; set; } /// /// Gets or sets the range. /// public Range Range { get; set; } /// /// Gets or sets the title. /// public int Title { get; set; } /// /// Gets or sets the path. /// public string Path { get; set; } } }