mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
13 lines
272 B
C#
13 lines
272 B
C#
using System;
|
|
|
|
namespace Bit.Core.Models.Api
|
|
{
|
|
public class SsoConfigRequestModel
|
|
{
|
|
public long Id { get; set; }
|
|
public bool Enabled { get; set; }
|
|
public Guid OrganizationId { get; set; }
|
|
public string Data { get; set; }
|
|
}
|
|
}
|