2020-06-18 19:19:02 +02:00
|
|
|
namespace Geekbot.net.Commands.Randomness.Greetings
|
|
|
|
{
|
|
|
|
public class GreetingDto
|
|
|
|
{
|
2020-06-30 17:54:01 +02:00
|
|
|
public string Text { get; set; }
|
|
|
|
public string Dialect { get; set; }
|
|
|
|
public string Romanization { get; set; }
|
|
|
|
public string[] Use { get; set; }
|
2020-06-18 19:19:02 +02:00
|
|
|
}
|
|
|
|
}
|