mirror of
https://github.com/bitwarden/server.git
synced 2026-02-02 07:03:11 +08: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);
|
||
|
|
}
|
||
|
|
}
|