Migrate trending gifs to providers

This commit is contained in:
Rory&
2026-07-08 01:20:38 +02:00
parent 28e8ec3b6c
commit 091b0e3536
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; }
}
}