mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 09:59:06 -07:00
97a02f5803
I think some people need to change their IDE configuration ;)
18 lines
440 B
C#
18 lines
440 B
C#
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)
|
|
{
|
|
}
|
|
}
|