initial commit
This commit is contained in:
12
BlueMine/Redmine/RedmineConfig.cs
Normal file
12
BlueMine/Redmine/RedmineConfig.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user