You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi.Settings/Settings/ISettingsService.cs

16 lines
369 B

using System;
using System.Threading.Tasks;
namespace Ombi.Core.Settings
{
public interface ISettingsService<T>
{
T GetSettings();
Task<T> GetSettingsAsync();
bool SaveSettings(T model);
Task<bool> SaveSettingsAsync(T model);
void Delete(T model);
Task DeleteAsync(T model);
void ClearCache();
}
}