blob: e3ed4c06a6f47d21facb4899749544285789eeb2 (
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
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="HBPresetTune.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>
// Defines the HBPresetTune type.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.ApplicationServices.Interop.Model.Encoding
{
/// <summary>
/// The hb preset tune.
/// </summary>
public class HBPresetTune
{
/// <summary>
/// Initializes a new instance of the <see cref="HBPresetTune"/> class.
/// </summary>
/// <param name="name">
/// The name.
/// </param>
/// <param name="shortName">
/// The short Name.
/// </param>
public HBPresetTune(string name, string shortName)
{
this.Name = name;
this.ShortName = shortName;
}
/// <summary>
/// Gets the name.
/// </summary>
public string Name { get; private set; }
/// <summary>
/// Gets the short name.
/// </summary>
public string ShortName { get; private set; }
}
}
|