mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 23:54:06 +03:00
13 lines
261 B
C#
13 lines
261 B
C#
|
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);
|
|||
|
}
|
|||
|
}
|