mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
14 lines
304 B
C#
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);
|
|
}
|
|
}
|