mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-04 03:27:05 -05:00 
			
		
		
		
	* Implemented the ability to download files (series, volume, chapter) * Added RBS checks to ensure user is either an admin or has download role * Added the ability to change a users feature RBS. Changed the Role seed to use reflection
		
			
				
	
	
		
			10 lines
		
	
	
		
			198 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			198 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Collections.Generic;
 | 
						|
 | 
						|
namespace API.DTOs
 | 
						|
{
 | 
						|
    public class UpdateRbsDto
 | 
						|
    {
 | 
						|
        public string Username { get; init; }
 | 
						|
        public IList<string> Roles { get; init; }
 | 
						|
    }
 | 
						|
} |