mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-10 13:23:18 +00:00
14 lines
327 B
C#
14 lines
327 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.DirectoryServices;
|
|
|
|
namespace Bit.Core.Models
|
|
{
|
|
public class AzureConfiguration
|
|
{
|
|
public string Tenant { get; set; } = "yourcompany.onmicrosoft.com";
|
|
public string Id { get; set; }
|
|
public EncryptedData Secret { get; set; }
|
|
}
|
|
}
|