From 5fe63e3b4f84d37083fcd4b76662c7e6c622ac77 Mon Sep 17 00:00:00 2001
From: Chomp <jonreid3@gmail.com>
Date: Tue, 17 Aug 2021 16:20:00 +0100
Subject: [PATCH] update what raw dump object returns

---
 Generator/Models/Input/Settings.cs | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/Generator/Models/Input/Settings.cs b/Generator/Models/Input/Settings.cs
index 6676f92..ce73b9a 100644
--- a/Generator/Models/Input/Settings.cs
+++ b/Generator/Models/Input/Settings.cs
@@ -200,11 +200,19 @@ namespace Generator.Models.Input
 
     public class Skills
     {
-        public List<object> Common { get; set; }
+        public List<Common> Common { get; set; }
         public List<object> Mastering { get; set; }
         public int Points { get; set; }
     }
 
+    public class Common
+    {
+        public string Id { get; set; }
+        public int Progress { get; set; }
+        public int PointsEarnedDuringSession { get; set; }
+        public int LastAccess { get; set; }
+    }
+
     public class SessionCounters
     {
         public List<object> Items { get; set; }