mirror of
https://github.com/bitwarden/mobile
synced 2025-12-14 15:23:35 +00:00
Added icons for iOS. Broke out data access into repositories. Added syncing service.
This commit is contained in:
12
src/App/Abstractions/Repositories/IFolderRepository.cs
Normal file
12
src/App/Abstractions/Repositories/IFolderRepository.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Bit.App.Models.Data;
|
||||
|
||||
namespace Bit.App.Abstractions
|
||||
{
|
||||
public interface IFolderRepository : IRepository<FolderData, string>
|
||||
{
|
||||
Task<IEnumerable<FolderData>> GetAllByUserIdAsync(string userId);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user