blob: 3a71117d6abb80a587950c46cacad66cdcd7899b (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="HBContainer.cs" company="HandBrake Project (https://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 hb container.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Interop.Interfaces.Model
{
/// <summary>
/// The hb container.
/// </summary>
public class HBContainer
{
/// <summary>
/// Initializes a new instance of the <see cref="HBContainer"/> class.
/// </summary>
/// <param name="defaultExtension">
/// The default extension.
/// </param>
/// <param name="displayName">
/// The display name.
/// </param>
/// <param name="id">
/// The id.
/// </param>
/// <param name="shortName">
/// The short name.
/// </param>
public HBContainer(string defaultExtension, string displayName, int id, string shortName)
{
this.DefaultExtension = defaultExtension;
this.DisplayName = displayName;
this.Id = id;
this.ShortName = shortName;
}
/// <summary>
/// Gets the default extension.
/// </summary>
public string DefaultExtension { get; private set; }
/// <summary>
/// Gets the display name.
/// </summary>
public string DisplayName { get; private set; }
/// <summary>
/// Gets the id.
/// </summary>
public int Id { get; private set; }
/// <summary>
/// Gets the short name.
/// </summary>
public string ShortName { get; private set; }
}
}
|