Migration to MVVM
This commit is contained in:
parent
0c1bb50dce
commit
1db874ce77
6 changed files with 946 additions and 575 deletions
10
imagecatalog/Services/ISettingsService.cs
Normal file
10
imagecatalog/Services/ISettingsService.cs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
using System.Threading.Tasks;
|
||||
|
||||
namespace ImageCatalog_2.Services
|
||||
{
|
||||
public interface ISettingsService
|
||||
{
|
||||
Task SaveSettingsAsync(string filePath, object settings);
|
||||
Task LoadSettingsAsync(string filePath, object settings);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue