diff options
Diffstat (limited to 'win/CS/HandBrake.Interop/Interop/Json/Scan/SubtitleAttributes.cs')
-rw-r--r-- | win/CS/HandBrake.Interop/Interop/Json/Scan/SubtitleAttributes.cs | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/win/CS/HandBrake.Interop/Interop/Json/Scan/SubtitleAttributes.cs b/win/CS/HandBrake.Interop/Interop/Json/Scan/SubtitleAttributes.cs index 07ac8b032..1cc2eaec4 100644 --- a/win/CS/HandBrake.Interop/Interop/Json/Scan/SubtitleAttributes.cs +++ b/win/CS/HandBrake.Interop/Interop/Json/Scan/SubtitleAttributes.cs @@ -1,5 +1,5 @@ // -------------------------------------------------------------------------------------------------------------------- -// <copyright file="SubtitleAttributes.cs" company="HandBrake Project (http://handbrake.fr)"> +// <copyright file="SubtitleAttributes.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> @@ -15,15 +15,25 @@ namespace HandBrake.Interop.Interop.Json.Scan { [JsonProperty(PropertyName = "4By3")] public bool FourByThree { get; set; } + public bool Children { get; set; } + public bool ClosedCaption { get; set; } + public bool Commentary { get; set; } + public bool Default { get; set; } + public bool Forced { get; set; } + public bool Large { get; set; } + public bool Letterbox { get; set; } + public bool Normal { get; set; } + public bool PanScan { get; set; } + public bool Wide { get; set; } } } |