mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-03 19:17:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			447 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			447 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Collections.Generic;
 | 
						|
using System.Threading.Tasks;
 | 
						|
using API.DTOs;
 | 
						|
using API.Entities;
 | 
						|
using API.Entities.Enums;
 | 
						|
 | 
						|
namespace API.Interfaces
 | 
						|
{
 | 
						|
    public interface ISettingsRepository
 | 
						|
    {
 | 
						|
        void Update(ServerSetting settings);
 | 
						|
        Task<ServerSettingDto> GetSettingsDtoAsync();
 | 
						|
        Task<ServerSetting> GetSettingAsync(ServerSettingKey key);
 | 
						|
        Task<IEnumerable<ServerSetting>> GetSettingsAsync();
 | 
						|
        
 | 
						|
    }
 | 
						|
} |