mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
12 lines
299 B
C#
12 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)
|
|
{ }
|
|
}
|
|
}
|