summaryrefslogtreecommitdiff
path: root/Project-Unite/Models/PongHighscore.cs
blob: 217abc0671d7fba61156e4cac1d8d3c01849ee71 (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 ulong 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; }
    }
}