mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-11 01:21:09 +08:00
13 lines
253 B
Java
13 lines
253 B
Java
package com.openisle.dto;
|
|
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = true)
|
|
public class FeaturedMedalDto extends MedalDto {
|
|
private long currentFeaturedCount;
|
|
private long targetFeaturedCount;
|
|
}
|
|
|