blob: 374a3b2a19b71a8bed66a501bf49adba84e88651 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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 int 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; }
}
}
|