Docker sync finished

This commit is contained in:
Álvaro Gómez Cuenca 2020-12-09 20:34:49 +01:00
commit 5e0939db3d
7 changed files with 50 additions and 32 deletions

View file

@ -5,11 +5,29 @@ using System.Text;
namespace Bot_Discord_CSharp.Dto
{
class ConfigDto
class ProfilesDto
{
[JsonProperty("token")]
[JsonProperty("profiles")]
public Bot_Discord_CSharpDto Bot_Discord_CSharp { get; private set; }
}
class Bot_Discord_CSharpDto
{
[JsonProperty("Bot_Discord_CSharp")]
public EnvironmentVariablesDto EnvironmentVariables { get; private set; }
}
class EnvironmentVariablesDto
{
[JsonProperty("environmentVariables")]
public SecretsDto Secrets { get; private set; }
}
class SecretsDto
{
[JsonProperty("TOKEN")]
public string Token { get; private set; }
[JsonProperty("Prefix")]
[JsonProperty("PREFIX")]
public string Prefix { get; private set; }
}
}