Bitwarden-app-android-iphon.../src/App/Abstractions/Services/IFolderService.cs

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);
}
}