121212133

This commit is contained in:
Putoo
2026-07-10 19:37:38 +08:00
parent 2c1bec379d
commit dec8c2e076
6 changed files with 32 additions and 23 deletions

View File

@@ -5,6 +5,7 @@ public interface IRankService
Task<string> GetRankUpdateTime();
Task<List<GameRankModel>> GetGameRank(int type, int area, int page, int limit, RefAsync<int> total);
Task<List<GameRankModel>> GetGameCopperRank(int area, int page, int limit, RefAsync<int> total);
Task<List<GameRankModel>> GetGameLevRank(int area, int page, int limit, RefAsync<int> total);
Task<List<GameRankModel>> GetGameTeachAndRenownRank(int type, int area, int page, int limit, RefAsync<int> total);
Task HandleRank();
}