mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-05 23:53:21 +00:00
10 lines
338 B
C#
10 lines
338 B
C#
namespace Bit.Core.Models
|
|
{
|
|
public class GSuiteConfiguration
|
|
{
|
|
public string SecretFile { get; set; } = "client_secret.json";
|
|
public string Customer { get; set; }
|
|
public string Domain { get; set; } = "yourcompany.com";
|
|
public string AdminUser { get; set; } = "adminuser@yourcompany.com";
|
|
}
|
|
} |