11 lines
260 B
C#
11 lines
260 B
C#
|
using System;
|
||
|
using Newtonsoft.Json;
|
||
|
|
||
|
namespace Geekbot.net.Commands.Integrations.LolMmr
|
||
|
{
|
||
|
public class LolMrrInfoDto
|
||
|
{
|
||
|
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
|
||
|
public decimal Avg { get; set; } = 0;
|
||
|
}
|
||
|
}
|