10 lines
254 B
C#
10 lines
254 B
C#
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace ImageCatalog_2.Services
|
|||
|
|
{
|
|||
|
|
public interface ISettingsService
|
|||
|
|
{
|
|||
|
|
Task SaveSettingsAsync(string filePath, object settings);
|
|||
|
|
Task LoadSettingsAsync(string filePath, object settings);
|
|||
|
|
}
|
|||
|
|
}
|