Files
jellyfin-jellyfin-1/Jellyfin.Api/Attributes/ProducesVideoFileAttribute.cs
2020-09-01 17:26:49 -06:00

19 lines
494 B
C#

namespace Jellyfin.Api.Attributes
{
/// <summary>
/// Produces file attribute of "video/*".
/// </summary>
public class ProducesVideoFileAttribute : ProducesFileAttribute
{
private const string ContentType = "video/*";
/// <summary>
/// Initializes a new instance of the <see cref="ProducesVideoFileAttribute"/> class.
/// </summary>
public ProducesVideoFileAttribute()
: base(ContentType)
{
}
}
}