Files
server/src/Core/Services/ISsoConfigService.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
163 B
C#
Raw Normal View History

using Bit.Core.Entities;
namespace Bit.Core.Services;
2022-08-29 16:06:55 -04:00
public interface ISsoConfigService
{
2021-11-17 11:46:35 +01:00
Task SaveAsync(SsoConfig config, Organization organization);
}