(To clarify, I have read other questions and their answers and tried all solutions, but none of them solved the issue)
I\'m debugging locally a code that I\'ll deplo
I believe the default model binder does not bind to fields, only properties with a public setter. Try changing your fields to properties:
public class PlayerEntry { public string userID { get; set; } public string userName { get; set; } public int userProgress { get; set; } }