15 lines
329 B
C#
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; }
|
|
}
|
|
}
|