//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
namespace MediaBrowser.Model.Entities;
///
/// Enum MediaStreamType.
///
public enum MediaStreamType
{
///
/// The audio.
///
Audio,
///
/// The video.
///
Video,
///
/// The subtitle.
///
Subtitle,
///
/// The embedded image.
///
EmbeddedImage,
///
/// The data.
///
Data,
///
/// The lyric.
///
Lyric
}