// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// Point to Point Mode
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.Services.Encode.Model.Models
{
using System.ComponentModel.DataAnnotations;
///
/// Point to Point Mode
///
public enum PointToPointMode
{
[Display(Name = "Chapters")]
Chapters = 0,
[Display(Name = "Seconds")]
Seconds,
[Display(Name = "Frames")]
Frames,
[Display(Name = "Preview")]
Preview,
}
}