2020-09-01 23:26:49 +00:00
|
|
|
|
namespace Jellyfin.Api.Attributes
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Produces file attribute of "image/*".
|
|
|
|
|
/// </summary>
|
2021-11-16 15:31:57 +00:00
|
|
|
|
public sealed class ProducesPlaylistFileAttribute : ProducesFileAttribute
|
2020-09-01 23:26:49 +00:00
|
|
|
|
{
|
|
|
|
|
private const string ContentType = "application/x-mpegURL";
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="ProducesPlaylistFileAttribute"/> class.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ProducesPlaylistFileAttribute()
|
|
|
|
|
: base(ContentType)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|