2024-08-30 13:29:48 +00:00
|
|
|
namespace Jellyfin.Api.Attributes;
|
2023-01-31 11:18:10 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Produces file attribute of "image/*".
|
|
|
|
/// </summary>
|
|
|
|
public sealed class ProducesAudioFileAttribute : ProducesFileAttribute
|
2020-09-01 23:26:49 +00:00
|
|
|
{
|
2023-01-31 11:18:10 +00:00
|
|
|
private const string ContentType = "audio/*";
|
|
|
|
|
2020-09-01 23:26:49 +00:00
|
|
|
/// <summary>
|
2023-01-31 11:18:10 +00:00
|
|
|
/// Initializes a new instance of the <see cref="ProducesAudioFileAttribute"/> class.
|
2020-09-01 23:26:49 +00:00
|
|
|
/// </summary>
|
2023-01-31 11:18:10 +00:00
|
|
|
public ProducesAudioFileAttribute()
|
|
|
|
: base(ContentType)
|
2020-09-01 23:26:49 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|