feat: Add category performance, update WebUI and OpenRouter integration, fix bugs

This commit is contained in:
Richard
2026-07-05 14:13:16 +02:00
parent d102af2965
commit e9e9ce0d5a
30 changed files with 2302 additions and 54 deletions
+4 -1
View File
@@ -38,7 +38,10 @@ public class Market
public string Question { get; set; } = string.Empty;
/// <summary>Category / tag (e.g. "Politics", "Crypto", "Sports").</summary>
public string Category { get; set; } = string.Empty;
public MarketCategory Category { get; set; }
/// <summary>Subcategory (e.g. "Basketball", "Elections", "Bitcoin").</summary>
public string Subcategory { get; set; } = string.Empty;
/// <summary>Current total volume traded.</summary>
public decimal Volume { get; set; }