1
0
mirror of https://git.teknik.io/Teknikode/Teknik.git synced 2023-08-02 14:16:22 +02:00
Teknik/Utilities/Configuration/GitConfig.cs

31 lines
644 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Teknik.Configuration
{
public class GitConfig
{
public bool Enabled { get; set; }
public string Host { get; set; }
2016-01-29 00:46:01 +01:00
public string AccessToken { get; set; }
public int SourceId { get; set; }
public DatabaseConfig Database { get; set; }
public GitConfig()
{
Enabled = true;
Host = string.Empty;
2016-01-29 00:46:01 +01:00
AccessToken = string.Empty;
SourceId = 1;
Database = new DatabaseConfig();
}
}
}