22 lines
596 B
C#
22 lines
596 B
C#
// <copyright file="ProducesAudioFileAttribute.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace Jellyfin.Api.Attributes;
|
|
|
|
/// <summary>
|
|
/// Produces file attribute of "image/*".
|
|
/// </summary>
|
|
public sealed class ProducesAudioFileAttribute : ProducesFileAttribute
|
|
{
|
|
private const string ContentType = "audio/*";
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ProducesAudioFileAttribute"/> class.
|
|
/// </summary>
|
|
public ProducesAudioFileAttribute()
|
|
: base(ContentType)
|
|
{
|
|
}
|
|
}
|