Applied Review Suggestions

This commit is contained in:
JPVenson
2024-10-10 15:27:13 +00:00
parent f58a24f005
commit 441b995189
6 changed files with 15 additions and 31 deletions

View File

@@ -8,30 +8,30 @@ public enum MediaStreamTypeEntity
/// <summary>
/// The audio.
/// </summary>
Audio,
Audio = 0,
/// <summary>
/// The video.
/// </summary>
Video,
Video = 1,
/// <summary>
/// The subtitle.
/// </summary>
Subtitle,
Subtitle = 2,
/// <summary>
/// The embedded image.
/// </summary>
EmbeddedImage,
EmbeddedImage = 3,
/// <summary>
/// The data.
/// </summary>
Data,
Data = 4,
/// <summary>
/// The lyric.
/// </summary>
Lyric
Lyric = 5
}