mirror of
https://github.com/bitwarden/server.git
synced 2024-12-03 14:03:33 +01:00
13 lines
331 B
C#
13 lines
331 B
C#
|
using System;
|
||
|
using System.Threading.Tasks;
|
||
|
using Bit.Core.Models.Table;
|
||
|
|
||
|
namespace Bit.Core.Repositories
|
||
|
{
|
||
|
public interface ISsoConfigRepository : IRepository<SsoConfig, long>
|
||
|
{
|
||
|
Task<SsoConfig> GetByOrganizationIdAsync(Guid organizationId);
|
||
|
Task<SsoConfig> GetByIdentifierAsync(string identifier);
|
||
|
}
|
||
|
}
|