Project-Unite/Project-Unite/Models/PongHighscore.cs
2017-05-02 20:59:58 -04:00

21 lines
No EOL
497 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Project_Unite.Models
{
public class PongHighscore
{
public string UserId { get; set; }
public long CodepointsCashout { get; set; }
public int Level { get; set; }
}
public class PongStatsViewModel
{
public int PageCount { get; set; }
public int CurrentPage { get; set; }
public List<PongHighscore> Highscores { get; set; }
}
}