geekbot/Geekbot.net/Commands/Randomness/Greetings/GreetingDto.cs

10 lines
292 B
C#
Raw Normal View History

2020-06-18 19:19:02 +02:00
namespace Geekbot.net.Commands.Randomness.Greetings
{
public class GreetingDto
{
public string Text { get; set; }
public string Language { get; set; }
public string Dialect { get; set; } = null;
public string Romanization { get; set; } = null;
}
}