// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// The Output format.
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.Services.Encode.Model.Models
{
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using HandBrake.ApplicationServices.Attributes;
///
/// The Output format.
///
public enum OutputFormat
{
[Description("MP4")]
[Display(Name = "MP4")]
[ShortName("av_mp4")]
Mp4 = 0,
[Description("MKV")]
[Display(Name = "MKV")]
[ShortName("av_mkv")]
Mkv,
}
}