aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Attributes/ProducesAudioFileAttribute.cs
blob: 9fc25f192eeb0f1357b649d3cecb5a7d68f8578f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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)
        {
        }
    }
}