mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-13 10:30:58 +08:00
12 lines
249 B
Java
12 lines
249 B
Java
package com.openisle.dto;
|
|
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = true)
|
|
public class CommentMedalDto extends MedalDto {
|
|
private long currentCommentCount;
|
|
private long targetCommentCount;
|
|
}
|