Player.cs 161 B

123456789
  1. using System.Collections.Generic;
  2. namespace api.Database
  3. {
  4. public class Player {
  5. public int Id {get; set;}
  6. public Dictionary<string, string> Progress;
  7. }
  8. }