Migrate trending gifs to providers

This commit is contained in:
Rory&
2026-07-06 17:12:30 +02:00
parent 6ed788a624
commit 526dbc17c8
8 changed files with 93 additions and 30 deletions
@@ -26,4 +26,20 @@ public class GifItem {
[JsonPropertyName("height")]
public int Height { get; set; }
}
public class TrendingGifsResult {
[JsonPropertyName("categories")]
public List<CategoryEntry> Categories { get; set; }
[JsonPropertyName("gifs")]
public List<GifItem> Gifs { get; set; }
public class CategoryEntry {
[JsonPropertyName("name")]
public string Name { get; set; }
[JsonPropertyName("src")]
public string Source { get; set; }
}
}