1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-06 21:48:12 -05:00
bitwarden/src/Core/Repositories/IShareRepository.cs
Kyle Spearrin 0caea4ab8b share api
2017-02-21 23:18:12 -05:00

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);
}
}