Fixed AncestorIds and applied review comments

This commit is contained in:
JPVenson
2024-10-09 23:19:24 +00:00
parent eb601e944c
commit 2955f2f562
16 changed files with 3275 additions and 181 deletions

View 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
}