using WorkTracker.Domain; namespace WorkTracker.Services.Settings; public interface IAppSettingsService { Task GetAsync(CancellationToken cancellationToken = default); Task SaveAsync(AppSettingsDocument settings, CancellationToken cancellationToken = default); }