Use greetings.dev instead of hardcoded greetings

This commit is contained in:
runebaas 2020-06-30 17:54:01 +02:00
parent 580a514ce5
commit c94d73736d
No known key found for this signature in database
GPG key ID: 2677AF508D0300D6
4 changed files with 37 additions and 1605 deletions

View file

@ -2,9 +2,9 @@ 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;
public string Text { get; set; }
public string Dialect { get; set; }
public string Romanization { get; set; }
public string[] Use { get; set; }
}
}