29 lines
510 B
C#
29 lines
510 B
C#
namespace MediaBrowser.Model.Entities
|
|
{
|
|
/// <summary>
|
|
/// Enum MediaStreamType.
|
|
/// </summary>
|
|
public enum MediaStreamType
|
|
{
|
|
/// <summary>
|
|
/// The audio.
|
|
/// </summary>
|
|
Audio,
|
|
|
|
/// <summary>
|
|
/// The video.
|
|
/// </summary>
|
|
Video,
|
|
|
|
/// <summary>
|
|
/// The subtitle.
|
|
/// </summary>
|
|
Subtitle,
|
|
|
|
/// <summary>
|
|
/// The embedded image.
|
|
/// </summary>
|
|
EmbeddedImage
|
|
}
|
|
}
|