Docker sync finished
This commit is contained in:
parent
70235f361a
commit
5e0939db3d
7 changed files with 50 additions and 32 deletions
|
|
@ -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; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue