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 GetSettingsDtoAsync(); Task GetSettingAsync(ServerSettingKey key); Task> GetSettingsAsync(); } }