1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-12 22:33:25 +00:00
Files
mobile/src/App/Abstractions/Repositories/IFolderRepository.cs
2016-07-31 00:19:12 -04:00

14 lines
377 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 DeleteWithSiteUpdateAsync(string id, DateTime revisionDate);
}
}