mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-16 12:01:00 +08:00
16 lines
278 B
Java
16 lines
278 B
Java
package com.openisle.dto;
|
|
|
|
import com.openisle.model.MedalType;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class MedalDto {
|
|
|
|
private String icon;
|
|
private String title;
|
|
private String description;
|
|
private MedalType type;
|
|
private boolean completed;
|
|
private boolean selected;
|
|
}
|