43 lines
821 B
C#
43 lines
821 B
C#
// <copyright file="MediaStreamType.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
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,
|
|
|
|
/// <summary>
|
|
/// The data.
|
|
/// </summary>
|
|
Data,
|
|
|
|
/// <summary>
|
|
/// The lyric.
|
|
/// </summary>
|
|
Lyric
|
|
}
|
|
}
|