Skip to content

Commit

Permalink
[Feat] 라이엇 전적검색 기능 (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
yukudaa committed May 2, 2024
1 parent a150dd2 commit 6742d51
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions doochul/src/main/java/org/doochul/ui/riot/dto/LeagueEntry.java
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
package org.doochul.ui.riot.dto;

public record LeagueEntry (
public record LeagueEntry(
String leagueId,
String queueType,
String tier,
String rank,
String summonerId,
String summonerName
){
String summonerName,
Long leaguePoints,
Long wins,
Long losses,
boolean veteran,
boolean inactive,
boolean freshBlood,
boolean hotStreak
) {
}

0 comments on commit 6742d51

Please sign in to comment.