WorkTracker/Services/Settings/IAppSettingsService.cs

10 lines
316 B
C#
Raw Permalink Normal View History

2026-02-18 17:11:13 +01:00
using WorkTracker.Domain;
namespace WorkTracker.Services.Settings;
public interface IAppSettingsService
{
Task<AppSettingsDocument> GetAsync(CancellationToken cancellationToken = default);
Task<AppSettingsDocument> SaveAsync(AppSettingsDocument settings, CancellationToken cancellationToken = default);
}