jellyfin/MediaBrowser.Model/Entities/MediaStreamType.cs

26 lines
502 B
C#
Raw Normal View History

2018-12-28 00:27:57 +01:00
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
}
}