mirror of
https://github.com/bitwarden/server.git
synced 2025-04-21 04:55:08 -05:00
16 lines
394 B
C#
16 lines
394 B
C#
namespace Bit.Admin
|
|
{
|
|
public class AdminSettings
|
|
{
|
|
public virtual string Admins { get; set; }
|
|
public virtual CloudflareSettings Cloudflare { get; set; }
|
|
|
|
public class CloudflareSettings
|
|
{
|
|
public string ZoneId { get; set; }
|
|
public string AuthEmail { get; set; }
|
|
public string AuthKey { get; set; }
|
|
}
|
|
}
|
|
}
|