p { get; set; }
+ public S s { get; set; }
+ public string id { get; set; }
+ }
+
+ [Serializable]
+ public class O
+ {
+ public int y { get; set; }
+ public int x { get; set; }
+ public string u { get; set; }
+ }
+
+ [Serializable]
+ public class P
+ {
+ public int y { get; set; }
+ public int x { get; set; }
+ public string u { get; set; }
+ }
+
+ [Serializable]
+ public class S
+ {
+ public int y { get; set; }
+ public int x { get; set; }
+ public string u { get; set; }
+ }
+}
diff --git a/src/Reddit.NET/Things/Post/Post.cs b/src/Reddit.NET/Things/Post/Post.cs
index 5ddcae6c..51e74cbc 100644
--- a/src/Reddit.NET/Things/Post/Post.cs
+++ b/src/Reddit.NET/Things/Post/Post.cs
@@ -2,6 +2,7 @@
using Newtonsoft.Json.Linq;
using Reddit.Controllers;
using Reddit.Models.Converters;
+using Reddit.NET.Things.Post;
using System;
using System.Collections.Generic;
@@ -326,6 +327,15 @@ public class Post
[JsonProperty("is_video")]
public bool IsVideo { get; set; }
+ [JsonProperty("is_gallery")]
+ public bool? IsGallery { get; set; }
+
+ [JsonProperty("gallery_data")]
+ public GalleryData GalleryData { get; set; }
+
+ [JsonProperty("media_metadata")]
+ public Dictionary