mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-11-10 16:47:00 -05:00
This reverts commit 848ea703bca4a37e4020f48992c4b1f481f62623, reversing changes made to af877063795469ac3d94d356b2787e296606f571.
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
|
|
}
|
|
}
|