namespace IOL.GreatOffice.Api.Data.Static; public class AppConfiguration { public string DB_HOST { get; set; } public string DB_PORT { get; set; } public string DB_USER { get; set; } public string DB_PASSWORD { get; set; } public string DB_NAME { get; set; } public string QUARTZ_DB_HOST { get; set; } public string QUARTZ_DB_PORT { get; set; } public string QUARTZ_DB_USER { get; set; } public string QUARTZ_DB_PASSWORD { get; set; } public string QUARTZ_DB_NAME { get; set; } public string SEQ_API_KEY { get; set; } public string SEQ_API_URL { get; set; } public string SMTP_HOST { get; set; } public string SMTP_PORT { get; set; } public string SMTP_USER { get; set; } public string SMTP_PASSWORD { get; set; } public string EMAIL_FROM_ADDRESS { get; set; } public string EMAIL_FROM_DISPLAY_NAME { get; set; } public string PORTAL_URL { get; set; } public string GITHUB_CLIENT_ID { get; set; } public string GITHUB_CLIENT_SECRET { get; set; } public string APP_AES_KEY { get; set; } }