blob: a6494ea8bb83faa1b257e785a83f20eca538a6ed (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
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; }
}
|