namespace Jellyfin.Data.Enums { /// /// An enum representing the type of media file. /// public enum MediaFileKind { /// /// The main file. /// Main = 0, /// /// A sidecar file. /// Sidecar = 1, /// /// An additional part to the main file. /// AdditionalPart = 2, /// /// An alternative format to the main file. /// AlternativeFormat = 3, /// /// An additional stream for the main file. /// AdditionalStream = 4 } }