dsharp-bot/Bot_Discord_CSharp/Dto/ConfigDto.cs
2020-12-08 03:29:16 +01:00

15 lines
329 B
C#

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; }
}
}