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