#pragma warning disable SA1300 // Lowercase required for backwards compat. using System.ComponentModel; namespace Jellyfin.Data.Enums; /// /// Media streaming protocol. /// Lowercase for backwards compatibility. /// [DefaultValue(http)] public enum MediaStreamProtocol { /// /// HTTP. /// http = 0, /// /// HTTP Live Streaming. /// hls = 1 }