mirror of
https://github.com/bitwarden/server
synced 2025-12-17 00:33:23 +00:00
14 lines
336 B
C#
14 lines
336 B
C#
using System;
|
|
using Bit.Core.Domains;
|
|
using System.Threading.Tasks;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Bit.Core.Repositories
|
|
{
|
|
public interface IShareRepository : IRepository<Share, Guid>
|
|
{
|
|
Task<Share> GetByIdAsync(Guid id, Guid userId);
|
|
Task<ICollection<Share>> GetManyByCipherId(Guid id);
|
|
}
|
|
}
|