mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
28 lines
612 B
C#
28 lines
612 B
C#
namespace Teknik.Configuration
|
|
{
|
|
public class GitConfig
|
|
{
|
|
public bool Enabled { get; set; }
|
|
|
|
public string Host { get; set; }
|
|
|
|
public string AccessToken { get; set; }
|
|
|
|
public string SecretKey { get; set; }
|
|
|
|
public int SourceId { get; set; }
|
|
|
|
public DatabaseConfig Database { get; set; }
|
|
|
|
public GitConfig()
|
|
{
|
|
Enabled = true;
|
|
Host = string.Empty;
|
|
AccessToken = string.Empty;
|
|
SecretKey = string.Empty;
|
|
SourceId = 1;
|
|
Database = new DatabaseConfig();
|
|
}
|
|
}
|
|
}
|