Files
carparkvalidation/CarParkValidationAPI/Models/AppSettings.cs
T
2026-06-18 21:39:20 +10:00

28 lines
856 B
C#

using System;
namespace CarParkValidationAPI.Models
{
public class AppSettings
{
public string Secret { get; set; }
public string SQLConnectionString { get; set; }
public string LDAPPath { get; set; }
public string LDAPUser { get; set; }
public string LDAPPassword { get; set; }
public string LoginWebAPI { get; set; }
/// <summary>
/// for convert to time. use GetADTimeOut
/// TimeSpan.FromSeconds(Convert.ToDouble(ConfigurationManager.AppSettings["ADTimeOut"]));
public string ADTimeOut { get; set; }
public TimeSpan GetADTimeOut()
{
if (!string.IsNullOrEmpty(ADTimeOut))
return TimeSpan.FromSeconds(Convert.ToDouble(ADTimeOut));
else
return TimeSpan.FromSeconds(0);
}
}
}