@@ -6,7 +6,7 @@ public class CommentRootJson : JsonBase
66 public CommentJson Comment { get ; set ; }
77}
88
9- public class FiltersRootJson
9+ public class FiltersRootJson : JsonBase
1010{
1111 [ JsonPropertyName ( "filters" ) ]
1212 public FilterJson [ ] Filters { get ; set ; }
@@ -15,7 +15,7 @@ public class FiltersRootJson
1515 public int Total { get ; set ; }
1616}
1717
18- public class ForumsRootJson
18+ public class ForumsRootJson : JsonBase
1919{
2020 [ JsonPropertyName ( "forums" ) ]
2121 public ForumJson [ ] Forums { get ; set ; }
@@ -24,47 +24,61 @@ public class ForumsRootJson
2424 public int Total { get ; set ; }
2525}
2626
27- public class GallerySearchRoot
27+ public class GallerySearchRoot : JsonBase
2828{
2929 [ JsonPropertyName ( "galleries" ) ]
3030 public GalleryJson [ ] Galleries { get ; set ; }
31+
32+ [ JsonPropertyName ( "total" ) ]
33+ public int Total { get ; set ; }
3134}
3235
33- public class ImageRootJson
36+ public class ImageRootJson : JsonBase
3437{
3538 [ JsonPropertyName ( "image" ) ]
3639 public ImageJson Image { get ; set ; }
40+
41+ [ JsonPropertyName ( "interactions" ) ]
42+ public InteractionJson [ ] Interactions { get ; set ; }
3743}
3844
39- public class ImageSearchRootJson
45+ public class ImageSearchRootJson : JsonBase
4046{
4147 [ JsonPropertyName ( "images" ) ]
4248 public ImageJson [ ] Images { get ; set ; }
49+
4350 [ JsonPropertyName ( "interactions" ) ]
4451 public InteractionJson [ ] Interactions { get ; set ; }
52+
4553 [ JsonPropertyName ( "total" ) ]
4654 public int Total { get ; set ; }
4755}
4856
49- public class PostSearchRootJson
57+ public class PostSearchRootJson : JsonBase
5058{
5159 [ JsonPropertyName ( "posts" ) ]
5260 public PostJson [ ] Posts { get ; set ; }
61+
62+ [ JsonPropertyName ( "total" ) ]
63+ public int Total { get ; set ; }
5364}
5465
55- public class ProfileRootJson
66+ public class ProfileRootJson : JsonBase
5667{
5768 [ JsonPropertyName ( "user" ) ]
5869 public UserJson User { get ; set ; }
5970}
6071
61- public class TagSearchRootJson
72+ public class TagSearchRootJson : JsonBase
6273{
6374 [ JsonPropertyName ( "tags" ) ]
6475 public TagJson [ ] Tags { get ; set ; }
76+
77+ [ JsonPropertyName ( "total" ) ]
78+ public int Total { get ; set ; }
6579}
6680
67- public class TopicRootJson
81+ public class TopicRootJson : JsonBase
6882{
6983 [ JsonPropertyName ( "topics" ) ]
7084 public TopicJson [ ] Topics { get ; set ; }
0 commit comments