mirror of
https://github.com/bitwarden/server.git
synced 2025-07-01 08:02:49 -05:00
requested changes
This commit is contained in:
@ -4,7 +4,7 @@ namespace Bit.Core.Models.Api
|
||||
{
|
||||
public class SsoConfigRequestModel
|
||||
{
|
||||
public long Id { get; set; }
|
||||
public long? Id { get; set; }
|
||||
public bool Enabled { get; set; }
|
||||
public Guid OrganizationId { get; set; }
|
||||
public string Data { get; set; }
|
||||
|
@ -19,7 +19,7 @@ namespace Bit.Core.Models.Api
|
||||
Data = ssoConfig.Data;
|
||||
}
|
||||
|
||||
public long Id { get; set; }
|
||||
public long? Id { get; set; }
|
||||
public bool Enabled { get; set; }
|
||||
public Guid OrganizationId { get; set; }
|
||||
public string Data { get; set; }
|
||||
|
@ -4,7 +4,7 @@ namespace Bit.Core.Models.Table
|
||||
{
|
||||
public class SsoConfig
|
||||
{
|
||||
public long Id { get; set; }
|
||||
public long? Id { get; set; }
|
||||
public bool Enabled { get; set; } = true;
|
||||
public Guid OrganizationId { get; set; }
|
||||
public string Data { get; set; }
|
||||
|
Reference in New Issue
Block a user