using System.ComponentModel; namespace Jellyfin.Data.Enums; /// /// Media streaming protocol. /// [DefaultValue(Http)] public enum MediaStreamProtocol { /// /// HTTP. /// Http = 0, /// /// HTTP Live Streaming. /// Hls = 1 }