mirror of
https://github.com/bitwarden/mobile
synced 2025-12-27 13:43:32 +00:00
13 lines
299 B
C#
13 lines
299 B
C#
using Bit.App.Abstractions;
|
|
using Bit.App.Models.Data;
|
|
|
|
namespace Bit.App.Repositories
|
|
{
|
|
public class SettingsRepository : Repository<SettingsData, string>, ISettingsRepository
|
|
{
|
|
public SettingsRepository(ISqlService sqlService)
|
|
: base(sqlService)
|
|
{ }
|
|
}
|
|
}
|