Files
SVSimServer/SVSim.EmulatedEntrypoint/Models/Dtos/Ranking/MonthlyRankingResponseDto.cs
gamer147 f743b27696 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>
2026-06-10 10:46:00 -04:00

17 lines
516 B
C#

using System.Text.Json.Serialization;
using MessagePack;
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Ranking;
[MessagePackObject]
public sealed class MonthlyRankingResponseDto
{
[JsonPropertyName("period"), Key("period")]
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
public PeriodEntryDto Period { get; set; } = new();
[JsonPropertyName("ranking"), Key("ranking")]
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
public List<RankingEntryDto> Ranking { get; set; } = new();
}