blob: 6bc04a5be02f5e1346f11c4b5fba8b44344219be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="HBVideoEncoder.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>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Model.Encoding
{
public class HBVideoEncoder
{
public string ShortName { get; set; }
public string DisplayName { get; set; }
public int Id { get; set; }
public int CompatibleContainers { get; set; }
}
}
|