// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The frame rate. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Json.Scan { /// /// The frame rate. /// public class FrameRate { /// /// Gets or sets the den. /// public int Den { get; set; } /// /// Gets or sets the num. /// public int Num { get; set; } } }