Agregar archivos de proyecto.

This commit is contained in:
Álvaro Gómez Cuenca 2020-12-08 03:29:16 +01:00
commit 2f3fbad29e
7 changed files with 353 additions and 0 deletions

View file

@ -0,0 +1,15 @@
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
namespace Bot_Discord_CSharp.Dto
{
class ConfigDto
{
[JsonProperty("token")]
public string Token { get; private set; }
[JsonProperty("Prefix")]
public string Prefix { get; private set; }
}
}