summaryrefslogtreecommitdiffstats
path: root/win/C#/interop/Model/Subtitles.cs
diff options
context:
space:
mode:
Diffstat (limited to 'win/C#/interop/Model/Subtitles.cs')
-rw-r--r--win/C#/interop/Model/Subtitles.cs26
1 files changed, 5 insertions, 21 deletions
diff --git a/win/C#/interop/Model/Subtitles.cs b/win/C#/interop/Model/Subtitles.cs
index ace470280..1fab7354e 100644
--- a/win/C#/interop/Model/Subtitles.cs
+++ b/win/C#/interop/Model/Subtitles.cs
@@ -1,29 +1,13 @@
-// --------------------------------------------------------------------------------------------------------------------
-// <copyright file="Subtitles.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 Subtitles type.
-// </summary>
-// --------------------------------------------------------------------------------------------------------------------
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
-namespace HandBrake.Interop.Model
+namespace HandBrake.Interop
{
- using System.Collections.Generic;
-
- /// <summary>
- /// Subtitles
- /// </summary>
public class Subtitles
{
- /// <summary>
- /// Gets or sets SrtSubtitles.
- /// </summary>
public List<SrtSubtitle> SrtSubtitles { get; set; }
-
- /// <summary>
- /// Gets or sets SourceSubtitles.
- /// </summary>
public List<SourceSubtitle> SourceSubtitles { get; set; }
}
}