internal static ReactionTagsFeed Create(GfycatClient client, RequestOptions options, Model model, ReactionLanguage lang)
 {
     return(new ReactionTagsFeed(client, options, lang)
     {
         Content = model.Tags.Select(t => ReactionFeed.Create(client, t, t.Tag, options)).ToReadOnlyCollection(),
         _cursor = model.Cursor
     });
 }
Exemple #2
0
 internal static PopulatedTagFeed Create(GfycatClient client, RequestOptions options, Model model)
 {
     return(new PopulatedTagFeed(client, options)
     {
         Content = model.Tags.Select(t => TaggedGfyFeed.Create(client, t, options)).ToReadOnlyCollection(),
         _cursor = model.Cursor
     });
 }