feature: NEWS2 Composite Scoring Engine

This commit is contained in:
voltsrage
2026-06-18 17:39:31 +08:00
parent c3fbc20ddc
commit e6f7989298
31 changed files with 3118 additions and 45 deletions
@@ -0,0 +1,6 @@
public interface INews2Service
{
Task<News2Score?> GetCurrentAsync(Guid encounterId);
Task<CursorPage<News2Score>> GetHistoryAsync(
Guid encounterId, int limit, string? cursorToken);
}