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

@ -0,0 +1,11 @@
namespace Geekbot.net.Commands.Randomness.Greetings
{
public class GreetingBaseDto
{
public string Language { get; set; }
public string LanguageNative { get; set; }
public string LanguageCode { get; set; }
public string Script { get; set; }
public GreetingDto Primary { get; set; }
}
}