// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// The duration 2.
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.ApplicationServices.Interop.Json.Scan
{
///
/// The duration 2.
///
internal class Duration2
{
///
/// 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; }
}
}