mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			490 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			490 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace Jellyfin.Api.Attributes
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Produces file attribute of "image/*".
 | 
						|
    /// </summary>
 | 
						|
    public class AcceptsImageFileAttribute : AcceptsFileAttribute
 | 
						|
    {
 | 
						|
        private const string ContentType = "image/*";
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Initializes a new instance of the <see cref="AcceptsImageFileAttribute"/> class.
 | 
						|
        /// </summary>
 | 
						|
        public AcceptsImageFileAttribute()
 | 
						|
            : base(ContentType)
 | 
						|
        {
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |