using System; using System.Collections.Generic; using System.Threading.Tasks; using Bit.Core.Models.Table; namespace Bit.Core.Repositories { public interface ISsoConfigRepository : IRepository { Task GetByOrganizationIdAsync(Guid organizationId); Task GetByIdentifierAsync(string identifier); Task> GetManyByRevisionNotBeforeDate(DateTime? notBefore); } }