summaryrefslogtreecommitdiff
path: root/Project-Unite/Models/PongHighscore.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Project-Unite/Models/PongHighscore.cs')
-rw-r--r--Project-Unite/Models/PongHighscore.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/Project-Unite/Models/PongHighscore.cs b/Project-Unite/Models/PongHighscore.cs
new file mode 100644
index 0000000..374a3b2
--- /dev/null
+++ b/Project-Unite/Models/PongHighscore.cs
@@ -0,0 +1,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; }
+ }
+} \ No newline at end of file