mirror of
https://github.com/bitwarden/server.git
synced 2025-04-25 23:02:17 -05:00
11 lines
188 B
C#
11 lines
188 B
C#
using System.Threading.Tasks;
|
|
using Bit.Core.Models.Table;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public interface ISsoConfigService
|
|
{
|
|
Task SaveAsync(SsoConfig config);
|
|
}
|
|
}
|