Add greetings in 299 languages

This commit is contained in:
runebaas 2020-06-18 19:19:02 +02:00
parent 8018d5e750
commit 12199f4ad4
No known key found for this signature in database
GPG key ID: 2677AF508D0300D6
3 changed files with 1660 additions and 0 deletions

View file

@ -0,0 +1,10 @@
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;
}
}