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