diff --git a/Booru.Net/Booru.Net.csproj b/Booru.Net/Booru.Net.csproj
index 254880f..3bbeade 100644
--- a/Booru.Net/Booru.Net.csproj
+++ b/Booru.Net/Booru.Net.csproj
@@ -24,14 +24,11 @@ Yande.re
booru imageboard api wrapper
true
- 2.0.0.0
+ 2.0.1
LICENSE
- 2.0.0.0
- 2.0.0.0
- ⚠ This version is not compatible with 1.0.0.X code ⚠
-
-Wrapper Restructuring & Seperate out each client from the container client
-Fix bugs presented from some booru's updating
+ 2.0.1.0
+ 2.0.1.0
+ Fix a few fields not being visible on E621Image#Score
diff --git a/Booru.Net/Models/Boards/E621Score.cs b/Booru.Net/Models/Boards/E621Score.cs
index b6fa97c..68c778a 100644
--- a/Booru.Net/Models/Boards/E621Score.cs
+++ b/Booru.Net/Models/Boards/E621Score.cs
@@ -8,9 +8,9 @@ namespace Booru.Net
public int Up { get; set; }
[JsonProperty("down")]
- private int Down { get; set; }
+ public int Down { get; set; }
[JsonProperty("total")]
- private int Total { get; set; }
+ public int Total { get; set; }
}
}