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;
2022-08-29 14:53:16 -04:00
namespace Bit.Core.Services;
public interface ISsoConfigService
{
2022-08-29 14:53:16 -04:00
Task SaveAsync(SsoConfig config, Organization organization);
}