Files
server/src/Core/Repositories/ISsoUserRepository.cs

12 lines
258 B
C#
Raw Normal View History

using Bit.Core.Models.Table;
using System;
using System.Threading.Tasks;
namespace Bit.Core.Repositories
{
public interface ISsoUserRepository : IRepository<SsoUser, long>
{
Task DeleteAsync(Guid userId, Guid? organizationId);
}
}