mirror of
https://github.com/bitwarden/android.git
synced 2026-05-22 04:22:11 -05:00
14 lines
378 B
C#
14 lines
378 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Bit.App.Models.Data;
|
|
|
|
namespace Bit.App.Abstractions
|
|
{
|
|
public interface IFolderRepository : IRepository<FolderData, string>
|
|
{
|
|
Task<IEnumerable<FolderData>> GetAllByUserIdAsync(string userId);
|
|
Task DeleteWithLoginUpdateAsync(string id, DateTime revisionDate);
|
|
}
|
|
}
|