diff options
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Interop/Json/Encode/SubtitleSearch.cs')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Interop/Json/Encode/SubtitleSearch.cs | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Interop/Json/Encode/SubtitleSearch.cs b/win/CS/HandBrake.ApplicationServices/Interop/Json/Encode/SubtitleSearch.cs new file mode 100644 index 000000000..b6c5cbd63 --- /dev/null +++ b/win/CS/HandBrake.ApplicationServices/Interop/Json/Encode/SubtitleSearch.cs @@ -0,0 +1,37 @@ +// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="SubtitleSearch.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>
+// The search.
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrake.ApplicationServices.Interop.Json.Encode
+{
+ /// <summary>
+ /// The search.
+ /// </summary>
+ public class SubtitleSearch
+ {
+ /// <summary>
+ /// Gets or sets a value indicating whether burn.
+ /// </summary>
+ public bool Burn { get; set; }
+
+ /// <summary>
+ /// Gets or sets a value indicating whether default.
+ /// </summary>
+ public bool Default { get; set; }
+
+ /// <summary>
+ /// Gets or sets a value indicating whether enable.
+ /// </summary>
+ public bool Enable { get; set; }
+
+ /// <summary>
+ /// Gets or sets a value indicating whether forced.
+ /// </summary>
+ public bool Forced { get; set; }
+ }
+}
\ No newline at end of file |