mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-19 13:30:55 +08:00
13 lines
264 B
Java
13 lines
264 B
Java
package com.openisle.dto;
|
|
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = true)
|
|
public class ContributorMedalDto extends MedalDto {
|
|
private long currentContributionLines;
|
|
private long targetContributionLines;
|
|
}
|
|
|