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