mirror of
https://github.com/bitwarden/mobile
synced 2025-12-23 11:43:49 +00:00
setup new settings service
This commit is contained in:
19
src/App/Services/SettingsService.cs
Normal file
19
src/App/Services/SettingsService.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using Bit.App.Abstractions;
|
||||
using Plugin.Settings.Abstractions;
|
||||
|
||||
namespace Bit.App.Services
|
||||
{
|
||||
public class SettingsService : ISettingsService
|
||||
{
|
||||
private readonly ISettingsRepository _settingsRepository;
|
||||
private readonly ISettings _settings;
|
||||
|
||||
public SettingsService(
|
||||
ISettingsRepository settingsRepository,
|
||||
ISettings settings)
|
||||
{
|
||||
_settingsRepository = settingsRepository;
|
||||
_settings = settings;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user