mirror of
https://github.com/bitwarden/server
synced 2025-12-26 05:03:18 +00:00
11 lines
211 B
C#
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);
|
|
}
|
|
}
|