geekbot/src/Bot/Commands/Integrations/LolMmr/LolMrrInfoDto.cs

10 lines
No EOL
245 B
C#

using Newtonsoft.Json;
namespace Geekbot.Bot.Commands.Integrations.LolMmr
{
public class LolMrrInfoDto
{
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public decimal Avg { get; set; } = 0;
}
}