blob: ac7f0b083097a706ca9f5b57fbf9fe9ed0fab380 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="Duration.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// The duration.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Json.Scan
{
/// <summary>
/// The duration.
/// </summary>
internal class Duration
{
/// <summary>
/// Gets or sets the hours.
/// </summary>
public int Hours { get; set; }
/// <summary>
/// Gets or sets the minutes.
/// </summary>
public int Minutes { get; set; }
/// <summary>
/// Gets or sets the seconds.
/// </summary>
public int Seconds { get; set; }
/// <summary>
/// Gets or sets the ticks.
/// </summary>
public int Ticks { get; set; }
}
}
|