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