Add the !corona command

This commit is contained in:
runebaas 2020-07-15 03:09:43 +02:00
parent ba0d116f3e
commit efed2f7120
No known key found for this signature in database
GPG key ID: 2677AF508D0300D6
2 changed files with 76 additions and 0 deletions

View file

@ -0,0 +1,9 @@
namespace Geekbot.net.Commands.Utils.Corona
{
public class CoronaSummaryDto
{
public decimal TotalConfirmed { get; set; }
public decimal TotalDeaths { get; set; }
public decimal TotalRecovered { get; set; }
}
}