mirror of
https://github.com/bitwarden/mobile
synced 2026-01-04 09:33:16 +00:00
sync and display attachments on view login
This commit is contained in:
12
src/App/Abstractions/Repositories/IAttachmentRepository.cs
Normal file
12
src/App/Abstractions/Repositories/IAttachmentRepository.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
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>> GetAllByLoginIdAsync(string loginId);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user