Scaffolded project
This commit is contained in:
commit
17a561094a
123 changed files with 64313 additions and 0 deletions
10
Services/Settings/IAppSettingsService.cs
Normal file
10
Services/Settings/IAppSettingsService.cs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
using WorkTracker.Domain;
|
||||
|
||||
namespace WorkTracker.Services.Settings;
|
||||
|
||||
public interface IAppSettingsService
|
||||
{
|
||||
Task<AppSettingsDocument> GetAsync(CancellationToken cancellationToken = default);
|
||||
|
||||
Task<AppSettingsDocument> SaveAsync(AppSettingsDocument settings, CancellationToken cancellationToken = default);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue