1
0
mirror of https://github.com/bitwarden/server synced 2025-12-26 05:03:18 +00:00
Files
server/src/Core/Services/ISsoConfigService.cs

11 lines
211 B
C#

using System.Threading.Tasks;
using Bit.Core.Entities;
namespace Bit.Core.Services
{
public interface ISsoConfigService
{
Task SaveAsync(SsoConfig config, Organization organization);
}
}