1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-02 16:42:50 -05:00

Created sso config service with save (#936)

This commit is contained in:
Kyle Spearrin
2020-09-15 10:17:44 -04:00
committed by GitHub
parent 692b3970af
commit 1c6c599b8d
6 changed files with 47 additions and 18 deletions

View File

@ -0,0 +1,10 @@
using System.Threading.Tasks;
using Bit.Core.Models.Table;
namespace Bit.Core.Services
{
public interface ISsoConfigService
{
Task SaveAsync(SsoConfig config);
}
}