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