diff --git a/WordPressPCL/Models/Settings.cs b/WordPressPCL/Models/Settings.cs
index 10c0f4b..8d7fbb0 100644
--- a/WordPressPCL/Models/Settings.cs
+++ b/WordPressPCL/Models/Settings.cs
@@ -96,5 +96,39 @@ public class Settings
///
[JsonProperty("default_comment_status")]
public OpenStatus? DefaultCommentStatus { get; set; }
+
+
+ private int? _SiteLogo;
+ ///
+ /// Media ID of the site logo
+ ///
+ [JsonProperty("site_logo")]
+ public int? SiteLogo
+ {
+ get
+ {
+ return _SiteLogo ?? 0;
+ }
+ set
+ {
+ _SiteLogo = value ?? 0;
+ }
+ }
+
+ private int? _SiteIcon;
+ ///
+ /// Media ID of the site icon
+ ///
+ [JsonProperty("site_icon")]
+ public int? SiteIcon {
+ get
+ {
+ return _SiteIcon ?? 0;
+ }
+ set
+ {
+ _SiteIcon = value ?? 0;
+ }
+ }
}
}
\ No newline at end of file
diff --git a/WordPressPCL/WordPressPCL.xml b/WordPressPCL/WordPressPCL.xml
index 5f62022..8d683aa 100644
--- a/WordPressPCL/WordPressPCL.xml
+++ b/WordPressPCL/WordPressPCL.xml
@@ -2983,6 +2983,16 @@
Default Comment Status
+
+
+ Media ID of the site logo
+
+
+
+
+ Media ID of the site icon
+
+
Adds a "Rendered" and a "Raw" property to all classes derived from this one