1
0
mirror of https://github.com/bitwarden/server synced 2025-12-16 08:13:33 +00:00

DAL & CRUD for SSO

This commit is contained in:
Matt Portune
2020-06-25 16:42:29 -04:00
parent b7154f017f
commit 39a81af3e9
14 changed files with 407 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
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; }
}
}