aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Attributes/ProducesVideoFileAttribute.cs
blob: 6857d45ecc5871f479470704b1a542eec2a8c925 (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 "video/*".
    /// </summary>
    public sealed class ProducesVideoFileAttribute : ProducesFileAttribute
    {
        private const string ContentType = "video/*";

        /// <summary>
        /// Initializes a new instance of the <see cref="ProducesVideoFileAttribute"/> class.
        /// </summary>
        public ProducesVideoFileAttribute()
            : base(ContentType)
        {
        }
    }
}