mirror of
https://github.com/bitwarden/mobile
synced 2025-12-10 05:13:31 +00: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);
|
|
}
|
|
}
|