mirror of
https://github.com/bitwarden/mobile
synced 2026-01-04 17:43:17 +00:00
set up user settings data table and access repository
This commit is contained in:
@@ -12,6 +12,7 @@ namespace Bit.App.Abstractions
|
||||
Task<IEnumerable<T>> GetAllAsync();
|
||||
Task UpdateAsync(T obj);
|
||||
Task InsertAsync(T obj);
|
||||
Task UpsertAsync(T obj);
|
||||
Task DeleteAsync(TId id);
|
||||
Task DeleteAsync(T obj);
|
||||
}
|
||||
|
||||
10
src/App/Abstractions/Repositories/ISettingsRepository.cs
Normal file
10
src/App/Abstractions/Repositories/ISettingsRepository.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Bit.App.Abstractions
|
||||
{
|
||||
public interface ISettingsRepository
|
||||
{
|
||||
Task<IEnumerable<IEnumerable<string>>> GetEquivablentDomains(string userId);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user