song-of-the-day/song_of_the_day/Auth/ConfigurationAD.cs

17 lines
662 B
C#

public class ConfigurationAD
{
public int Port { get; set; } = 389;
public string Zone { get; set; } = string.Empty;
public string Domain { get; set; } = string.Empty;
public string Subdomain { get; set; } = string.Empty;
public string Username { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
public string LDAPserver { get; set; } = string.Empty;
public string LDAPQueryBase { get; set; } = string.Empty;
public string LDAPUserQueryBase { get; set; } = string.Empty;
public string CrewGroup { get; set; } = string.Empty;
public string ManagerGroup { get; set; } = string.Empty;
}