mirror of
https://github.com/bitwarden/mobile
synced 2025-12-28 06:03:40 +00:00
14 lines
397 B
C#
14 lines
397 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Bit.App.Models.Data;
|
|
|
|
namespace Bit.App.Abstractions
|
|
{
|
|
public interface IAttachmentRepository : IRepository<AttachmentData, string>
|
|
{
|
|
Task<IEnumerable<AttachmentData>> GetAllByCipherIdAsync(string cipherId);
|
|
Task<IEnumerable<AttachmentData>> GetAllByUserIdAsync(string userId);
|
|
}
|
|
}
|