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