jellyfin/MediaBrowser.Model/Entities/MediaStreamType.cs

34 lines
592 B
C#
Raw Normal View History

2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Model.Entities
{
/// <summary>
2020-02-03 19:49:27 -05:00
/// Enum MediaStreamType.
2018-12-27 18:27:57 -05:00
/// </summary>
public enum MediaStreamType
{
/// <summary>
2020-02-03 19:49:27 -05:00
/// The audio.
2018-12-27 18:27:57 -05:00
/// </summary>
Audio,
2020-02-03 19:49:27 -05:00
2018-12-27 18:27:57 -05:00
/// <summary>
2020-02-03 19:49:27 -05:00
/// The video.
2018-12-27 18:27:57 -05:00
/// </summary>
Video,
2020-02-03 19:49:27 -05:00
2018-12-27 18:27:57 -05:00
/// <summary>
2020-02-03 19:49:27 -05:00
/// The subtitle.
2018-12-27 18:27:57 -05:00
/// </summary>
Subtitle,
2020-02-03 19:49:27 -05:00
2018-12-27 18:27:57 -05:00
/// <summary>
2020-02-03 19:49:27 -05:00
/// The embedded image.
2018-12-27 18:27:57 -05:00
/// </summary>
EmbeddedImage,
/// <summary>
/// The data.
/// </summary>
Data
2018-12-27 18:27:57 -05:00
}
}