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>
16 lines
431 B
C#
16 lines
431 B
C#
using System.Text.Json.Serialization;
|
|
using MessagePack;
|
|
using SVSim.EmulatedEntrypoint.Models.Dtos.Requests;
|
|
|
|
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Ranking;
|
|
|
|
[MessagePackObject]
|
|
public sealed class ClassWinInfoRequestDto : BaseRequest
|
|
{
|
|
[JsonPropertyName("period_id"), Key("period_id")]
|
|
public int PeriodId { get; set; }
|
|
|
|
[JsonPropertyName("class_id"), Key("class_id")]
|
|
public int ClassId { get; set; }
|
|
}
|