1 // --------------------------------------------------------------------------------------------------------------------
2 // <copyright file="Chapter.cs" company="HandBrake Project (https://handbrake.fr)">
3 //   This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
4 // </copyright>
5 // <summary>
6 //   Represents a chapter to encode.
7 // </summary>
8 // --------------------------------------------------------------------------------------------------------------------
9 
10 namespace HandBrake.Interop.Interop.Json.Encode
11 {
12     /// <summary>
13     /// Represents a chapter to encode.
14     /// </summary>
15     public class Chapter
16     {
17         /// <summary>
18         /// Gets or sets the name.
19         /// </summary>
20         public string Name { get; set; }
21     }
22 }