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