mirror of
https://github.com/bitwarden/server.git
synced 2025-07-05 18:12:48 -05:00
11 lines
350 B
C#
11 lines
350 B
C#
using Bit.Core.Entities;
|
|
|
|
namespace Bit.Core.Repositories;
|
|
|
|
public interface ISsoConfigRepository : IRepository<SsoConfig, long>
|
|
{
|
|
Task<SsoConfig> GetByOrganizationIdAsync(Guid organizationId);
|
|
Task<SsoConfig> GetByIdentifierAsync(string identifier);
|
|
Task<ICollection<SsoConfig>> GetManyByRevisionNotBeforeDate(DateTime? notBefore);
|
|
}
|