mirror of
https://github.com/bitwarden/mobile
synced 2025-12-15 07:43:37 +00:00
initial commit
This commit is contained in:
12
src/App/Abstractions/Services/IFolderService.cs
Normal file
12
src/App/Abstractions/Services/IFolderService.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Bit.App.Models;
|
||||
|
||||
namespace Bit.App.Abstractions
|
||||
{
|
||||
public interface IFolderService
|
||||
{
|
||||
Task<IEnumerable<Folder>> GetAllAsync();
|
||||
Task SaveAsync(Folder folder);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user