blob: e90ae709a4059e9788eeb2d673c164ecdc758f45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="PictureSettingsTitle.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>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Interop.Interfaces.Model
{
public class PictureSettingsTitle
{
public int Width { get; set; }
public int Height { get; set; }
public int ParW { get; set; }
public int ParH { get; set; }
public double Aspect { get; set; }
}
}
|