This commit is contained in:
Michael 2017-05-30 17:49:52 -04:00
parent 0add14850a
commit 25559284f1
3 changed files with 3 additions and 3 deletions

View file

@ -50,7 +50,7 @@ public ActionResult GetPongCP()
}
}
public ActionResult SetPongCP(int id)
public ActionResult SetPongCP(ulong id)
{
try
{

View file

@ -42,7 +42,7 @@ public async Task<ClaimsIdentity> GenerateUserIdentityAsync(UserManager<Applicat
}
public int Pong_HighestLevel { get; set; }
public int Pong_HighestCodepointsCashout { get; set; }
public ulong Pong_HighestCodepointsCashout { get; set; }
#region Privacy

View file

@ -8,7 +8,7 @@ namespace Project_Unite.Models
public class PongHighscore
{
public string UserId { get; set; }
public long CodepointsCashout { get; set; }
public ulong CodepointsCashout { get; set; }
public int Level { get; set; }
}