1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-05 23:53:33 +00:00
Files
mobile/src/App/Abstractions/Services/IFolderService.cs
2016-05-02 18:35:01 -04:00

14 lines
304 B
C#

using System.Collections.Generic;
using System.Threading.Tasks;
using Bit.App.Models;
namespace Bit.App.Abstractions
{
public interface IFolderService
{
Task<Folder> GetByIdAsync(int id);
Task<IEnumerable<Folder>> GetAllAsync();
Task SaveAsync(Folder folder);
}
}