mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-12 21:32:08 +01:00
Fixed AncestorIds and applied review comments
This commit is contained in:
37
Jellyfin.Data/Entities/MediaStreamTypeEntity.cs
Normal file
37
Jellyfin.Data/Entities/MediaStreamTypeEntity.cs
Normal file
@@ -0,0 +1,37 @@
|
||||
namespace Jellyfin.Data.Entities;
|
||||
|
||||
/// <summary>
|
||||
/// Enum MediaStreamType.
|
||||
/// </summary>
|
||||
public enum MediaStreamTypeEntity
|
||||
{
|
||||
/// <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
|
||||
}
|
||||
Reference in New Issue
Block a user