25 lines
969 B
C#
25 lines
969 B
C#
namespace AAIntegration.SimmonsBank.API.Configs;
|
|
|
|
public class PuppeteerConfig
|
|
{
|
|
public int KeepAliveIntervalMinutes { get; set; }
|
|
public int CheckForNewDataIntervalMinutes { get; set; }
|
|
public int TaskCheckIntervalMinutes { get; set; }
|
|
public string SimmonsBankBaseUrl { get; set; }
|
|
public int BrowserOperationTimeoutSeconds { get; set; }
|
|
}
|
|
|
|
public class PuppeteerConfigConstants
|
|
{
|
|
public const string KeepAliveIntervalMinutes = "KeepAliveIntervalMinutes";
|
|
public const string CheckForNewDataIntervalMinutes = "CheckForNewDataIntervalMinutes";
|
|
public const string TaskCheckIntervalMinutes = "TaskCheckIntervalMinutes";
|
|
public const string SimmonsBankBaseUrl = "SimmonsBankBaseUrl";
|
|
public const string BrowserOperationTimeoutSeconds = "BrowserOperationTimeoutSeconds";
|
|
}
|
|
|
|
public class PuppeteerConstants
|
|
{
|
|
public const string BROWSER_CACHE_KEY = "BrowserCacheKey";
|
|
public const string USER_SB_ID = "UserSimmonsBankId";
|
|
} |