mirror of
https://github.com/bitwarden/server.git
synced 2024-12-01 13:43:23 +01:00
15 lines
458 B
C#
15 lines
458 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
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);
|
|
Task<ICollection<SsoConfig>> GetManyByRevisionNotBeforeDate(DateTime? notBefore);
|
|
}
|
|
}
|