// --------------------------------------------------------------------------------------------------------------------
// 
//   This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// 
// 
//   Represents a chapter to encode.
// 
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.ApplicationServices.Interop.Json.Encode
{
    /// 
    /// Represents a chapter to encode.
    /// 
    public class Chapter
    {
        /// 
        /// Gets or sets the name.
        /// 
        public string Name { get; set; }
    }
}