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

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

11 lines
211 B
C#
Raw Normal View History

using System.Threading.Tasks;
using Bit.Core.Entities;
namespace Bit.Core.Services
{
public interface ISsoConfigService
{
2021-11-17 11:46:35 +01:00
Task SaveAsync(SsoConfig config, Organization organization);
}
}