mirror of
https://github.com/bitwarden/android.git
synced 2024-11-05 09:34:37 +03:00
20 lines
500 B
C#
20 lines
500 B
C#
|
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|