12 lines
477 B
C#
12 lines
477 B
C#
namespace BlueMine.Redmine
|
|
{
|
|
public class RedmineConfig
|
|
{
|
|
public string RedmineUrl { get; set; } = "http://redmine.example.com";
|
|
public string ApiKey { get; set; } = "";
|
|
public TimeSpan ProjectCacheDuration { get; set; } = TimeSpan.FromMinutes(15);
|
|
public TimeSpan IssueCacheDuration { get; set; } = TimeSpan.FromMinutes(5);
|
|
public int MaxRetries { get; set; } = 3;
|
|
public int ConcurrencyLimit { get; set; } = 10;
|
|
}
|
|
} |