//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
namespace MediaBrowser.Controller.MediaEncoding
{
///
/// Enum TranscodingJobType.
///
public enum TranscodingJobType
{
///
/// The progressive.
///
Progressive,
///
/// The HLS.
///
Hls,
///
/// The dash.
///
Dash
}
}