mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 21:48:12 -05:00
12 lines
241 B
C#
12 lines
241 B
C#
using System;
|
|
using Bit.Core.Domains;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Bit.Core.Repositories
|
|
{
|
|
public interface IShareRepository : IRepository<Share, Guid>
|
|
{
|
|
Task<Share> GetByIdAsync(Guid id, Guid userId);
|
|
}
|
|
}
|