geekbot/Geekbot.net/Lib/Highscores/HighscoreUserDto.cs

10 lines
275 B
C#
Raw Normal View History

namespace Geekbot.net.Lib.Highscores
{
public class HighscoreUserDto
{
public string Username { get; set; }
public string Avatar { get; set; }
public string Discriminator { get; set; }
public string Id { get; set; }
}
}