feat(ranking): stub /ranking/* (6 endpoints)
Rankings menu opens. Period picker shows deterministic monthly schedule.
Every leaderboard returns { period, ranking: [] }.
Endpoints:
- /ranking/get_viewable_ranking_period_list
- /ranking/master_point_{rotation,unlimited}_info
- /ranking/rank_match_class_win_{rotation,unlimited}_info
- /ranking/two_pick_win_info
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using System.Text.Json.Serialization;
|
||||
using MessagePack;
|
||||
|
||||
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Ranking;
|
||||
|
||||
[MessagePackObject]
|
||||
public sealed class TwoPickPeriodEntryDto : PeriodEntryDto
|
||||
{
|
||||
[JsonPropertyName("type"), Key("type")]
|
||||
public string Type { get; set; } = "2";
|
||||
|
||||
[JsonPropertyName("over_460"), Key("over_460")]
|
||||
public string Over460 { get; set; } = "1";
|
||||
}
|
||||
Reference in New Issue
Block a user