mirror of
https://github.com/bitwarden/server.git
synced 2026-01-31 22:23:18 +08:00
13 lines
336 B
C#
13 lines
336 B
C#
|
|
using System.Text.Json.Serialization;
|
|||
|
|
using Bit.Core.Enums;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Models.OrganizationConnectionConfigs
|
|||
|
|
{
|
|||
|
|
public class ScimConfig
|
|||
|
|
{
|
|||
|
|
public bool Enabled { get; set; }
|
|||
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
|||
|
|
public ScimProviderType? ScimProvider { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|