// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The duration. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Json.Scan { /// /// The duration. /// public class Duration { /// /// Gets or sets the hours. /// public int Hours { get; set; } /// /// Gets or sets the minutes. /// public int Minutes { get; set; } /// /// Gets or sets the seconds. /// public int Seconds { get; set; } /// /// Gets or sets the ticks. /// public int Ticks { get; set; } } }